diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-08 22:42:24 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-28 22:22:26 -0400 |
commit | 9fcc85f1a28d084e0c3c0c3858a15e0a5974f3c3 (patch) | |
tree | 5f856ffb7d474ca6b4525c59872252c38e54fa52 | |
parent | dbc904f242b231d175977c1adc5c38653e7c3755 (diff) | |
download | guix-9fcc85f1a28d084e0c3c0c3858a15e0a5974f3c3.tar.gz |
gnu: ruby-byebug: Do not depend on ruby-chandler.
* gnu/packages/ruby.scm (ruby-byebug) [phases] {sanitize-dependencies}: New phase. [native-inputs]: Delete ruby-chandler.
-rw-r--r-- | gnu/packages/ruby.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 4d27a2369d..4a7db0d7f2 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6950,6 +6950,10 @@ with PostgreSQL 9.0 and later.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'sanitize-dependencies + (lambda _ + (substitute* "Rakefile" + ((".*chandler/tasks.*") "")))) (add-after 'unpack 'skip-tmp-path-sensitive-test (lambda _ (substitute* "test/commands/where_test.rb" @@ -6969,7 +6973,6 @@ with PostgreSQL 9.0 and later.") (setenv "HOME" (getcwd))))))) (native-inputs (list bundler - ruby-chandler ;; Using minitest 5.17 would cause 5 new bug failures. This is ;; probably related to ;; https://github.com/deivid-rodriguez/byebug/pull/837. Use |