1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: ruby-crass: Fix minitest.

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

View file

@ -7564,6 +7564,14 @@ documents and fragments. It's built on top of Nokogiri and libxml2.")
(base32
"1gbsb81psgb6xhnwpx4s409jc0mk0gijh039sy5xyi8jpaaadp40"))))
(build-system ruby-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-minitest
(lambda _
(substitute* "test/support/common.rb"
(("MiniTest")
"Minitest")))))))
(synopsis "Pure Ruby CSS parser")
(description
"Crass is a pure Ruby CSS parser based on the CSS Syntax Level 3 spec.")