1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: ruby-unf: Update to 0.2.0.

* gnu/packages/ruby-xyz.scm (ruby-unf): Update to 0.2.0.
  [source]: Switch to git-fetch.
This commit is contained in:
Nicolas Graves 2025-06-18 16:27:17 +02:00 committed by Andreas Enge
parent e4230daa38
commit b0a6138ece
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -10342,14 +10342,21 @@ more complex, and error-prone.")
(define-public ruby-unf
(package
(name "ruby-unf")
(version "0.1.4")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "unf" version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/knu/ruby-unf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"))))
(base32 "1zczv2z4yk73gymh5ymjgf857z6274nwv7gnslip507ds67r78ay"))
(modules '((guix build utils)))
(snippet #~(begin
(delete-file-recursively "ext")
(substitute* "unf.gemspec"
(("gem\\.extensions.*") ""))))))
(build-system ruby-build-system)
(arguments
`(#:phases