diff options
author | Christopher Baines <mail@cbaines.net> | 2023-07-01 09:41:26 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-07-10 08:26:03 +0100 |
commit | 135c9af111d3035dc8ea491afdcbb336016f61b5 (patch) | |
tree | 7dbf37e419b3788a5d91bbb38cc06bf919967092 /gnu | |
parent | 6f57245943f7f4a43424cda265e844d1e5a59e91 (diff) | |
download | guix-135c9af111d3035dc8ea491afdcbb336016f61b5.tar.gz |
gnu: ruby-mapping: Fix build.
* gnu/packages/ruby.scm (ruby-mapping)[arguments]: Add 'patch phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 137879bbc4..1a9a27a03e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4698,7 +4698,16 @@ It allows writing tests, checking results and automated testing in Ruby.") (base32 "0yhmqp8mprjqf9m7wzc4hhi50qbfax86r89w852csns0ijaffjjs")))) (build-system ruby-build-system) - (arguments (list #:test-target "spec")) + (arguments + (list + #:test-target "spec" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda _ + (substitute* "spec/mapping/model_spec.rb" + ;; From https://github.com/ioquatix/mapping/pull/2 + (("offset:") "offset ="))))))) (native-inputs (list ruby-rspec)) (synopsis "Map model objects based on their class to a given output model") (description "The @code{mapping} gem maps model objects based on their |