diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-06-18 16:27:49 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:40:07 +0200 |
commit | 53d2bae8107c1cdf90d12c25ba05d1adbb788065 (patch) | |
tree | 3dd973115eff1435d4d65d3a174d7f03ad5c0589 | |
parent | e6abd00e315d5c917453337c06ab048fa71a6e0e (diff) |
gnu: ruby-fog-xml: Sanitize dependencies.
* gnu/packages/ruby-xyz.scm (ruby-fog-xml)[arguments]{phases}: Add
phase 'sanitize-dependencies.
-rw-r--r-- | gnu/packages/ruby-xyz.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm index a411178521..34cf7b7e3a 100644 --- a/gnu/packages/ruby-xyz.scm +++ b/gnu/packages/ruby-xyz.scm @@ -9009,6 +9009,10 @@ services library.") (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'sanitize-dependencies + (lambda _ + (substitute* "fog-xml.gemspec" + ((".*coveralls.*") "")))) ;; Run tests via bundler so rake picks up the minitest gem from ;; native-inputs, not the one installed otherwise. This is required ;; since turn@0.9.7 needs minitest@4 and can not be upgraded to |