diff options
author | Christopher Baines <mail@cbaines.net> | 2023-06-18 11:54:51 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-06-20 22:04:50 +0100 |
commit | 04e5318eaceaaeb7ee6391307a34e14fa921326c (patch) | |
tree | eefe5d6f899e73095fb8d64f25c8e9ae93671815 | |
parent | c7f93b1b8597d6d91b9956a40bc131c18412bbbe (diff) |
gnu: ruby-rjb: Update to 1.6.7.
* gnu/packages/ruby.scm (ruby-rjb): Update to 1.6.7.
[arguments]: Update style.
-rw-r--r-- | gnu/packages/ruby.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index d1643e8a68..c7bb133848 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1212,22 +1212,22 @@ next patch version for example.") (define-public ruby-rjb (package (name "ruby-rjb") - (version "1.5.5") + (version "1.6.7") (source (origin (method url-fetch) (uri (rubygems-uri "rjb" version)) (sha256 (base32 - "1ppj8rbicj3w0nhh7f73mflq19yd7pzdzkh2a91hcvphriy5b0ca")))) + "0ck802bm8cklhmqsgzhsa0y8lg80qy52dp3m8rlld3zc5gv1rsb9")))) (build-system ruby-build-system) (arguments - `(#:tests? #f ; no rakefile - #:phases - (modify-phases %standard-phases - (add-before 'build 'set-java-home - (lambda* (#:key inputs #:allow-other-keys) - (setenv "JAVA_HOME" (assoc-ref inputs "jdk")) - #t))))) + (list + #:tests? #f ; no rakefile + #:phases + #~(modify-phases %standard-phases + (add-before 'build 'set-java-home + (lambda* (#:key inputs #:allow-other-keys) + (setenv "JAVA_HOME" (assoc-ref inputs "jdk"))))))) (native-inputs `(("jdk" ,icedtea "jdk"))) (synopsis "Ruby-to-Java bridge using the Java Native Interface") |