From 3f91e3e81d65c57f345f8ba0643927f2d921299b Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 4 Jul 2023 16:15:47 +0100 Subject: gnu: ruby-flores: Fix build. There's a single test failure when the tests are run with ruby 3.1. * gnu/packages/ruby.scm (ruby-flores)[arguments]: Add #:ruby ruby-2.7 and use it. --- gnu/packages/ruby.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 20fcd7f462..2433739750 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4344,12 +4344,13 @@ fiber, and defaults to a shared thread-local state.") "0pd8gqgy67rp1baq5r7himl0r9jzv5kqlhdmqh8wngynv548w2ai")))) (build-system ruby-build-system) (arguments - (list #:phases + (list #:ruby ruby-2.7 + #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? - (invoke "rspec"))))))) + (invoke "ruby" (which "rspec")))))))) (native-inputs (list ruby-rspec ruby-simplecov)) (synopsis "Fuzzing, randomization, and stress testing library") (description "Flores is a fuzzing, randomization, and stress library to -- cgit 1.4.1