diff options
author | Christopher Baines <mail@cbaines.net> | 2023-07-03 10:01:12 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-07-10 08:26:04 +0100 |
commit | c078d787148aba2c0269416799b95ad3a8a52889 (patch) | |
tree | 74194e8d7b68c6418a5332c8788a94418075c809 | |
parent | 7c94bfddb37a278865d1fde88c4a405f93557ece (diff) |
gnu: ruby-chunky-png: Update to 1.4.0.
* gnu/packages/ruby.scm (ruby-chunky-png): Update to 1.4.0.
[arguments]: Update style.
-rw-r--r-- | gnu/packages/ruby.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 44d9062e57..4993d81c79 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2177,7 +2177,7 @@ to save time in the following ways: (define-public ruby-chunky-png (package (name "ruby-chunky-png") - (version "1.3.14") + (version "1.4.0") (source (origin (method git-fetch) @@ -2186,17 +2186,17 @@ to save time in the following ways: (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1m7y11ix38h5a2pj5v81qdmvqh980ql9hp62hk2dxwkwsa4nh22h")))) + (base32 "05qwj72dy2fcy0n2jnf3bfriybfj36m7s6pv9xash6295dbcp901")))) (build-system ruby-build-system) (arguments - `(#:test-target "spec" - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'disable-bundler - (lambda _ - (substitute* (find-files "." "\\.rb$") - (("require.*bundler/setup.*") "")) - #t))))) + (list + #:test-target "spec" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'disable-bundler + (lambda _ + (substitute* (find-files "." "\\.rb$") + (("require.*bundler/setup.*") ""))))))) (native-inputs (list bundler ruby-rspec ruby-standard ruby-yard)) (synopsis "Ruby library to handle PNG images") |