1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: ruby-bindex: Fix minitest.

* gnu/packages/ruby-xyz.scm (ruby-bindex)[arguments]{phases}: Add
phase 'patch-minitest.
This commit is contained in:
Nicolas Graves 2025-06-18 16:27:29 +02:00 committed by Andreas Enge
parent 980de9792f
commit e324b9ac3a
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -9132,7 +9132,12 @@ wallclock and object allocation samplers.")
(add-after 'unpack 'avoid-bundler
(lambda _
(substitute* "Rakefile"
(("^Bundler::.*") "")))))))
(("^Bundler::.*") ""))))
(add-after 'unpack 'patch-minitest
(lambda _
(substitute* "test/test_helper.rb"
(("MiniTest")
"Minitest")))))))
(native-inputs (list bundler ruby-rake-compiler))
(synopsis "Bindings for Ruby exceptions")
(description