diff options
author | Christopher Baines <mail@cbaines.net> | 2023-07-04 16:15:47 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-07-10 08:26:04 +0100 |
commit | 3f91e3e81d65c57f345f8ba0643927f2d921299b (patch) | |
tree | 69807872c7d461ec114643875536b1ce7e58fc2f /gnu/packages/ruby.scm | |
parent | 97a934d45feae4e38599159e43e581d52eddf7e9 (diff) | |
download | guix-3f91e3e81d65c57f345f8ba0643927f2d921299b.tar.gz |
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.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r-- | gnu/packages/ruby.scm | 5 |
1 files changed, 3 insertions, 2 deletions
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 |