gnu: rust-universal-hash-0.4: Update to 0.4.1.

* gnu/packages/crates-crypto.scm (rust-universal-hash-0.4): Update to
0.4.1.
[source]: Add snippet to allow for newer versions of dependencies.

Change-Id: Id1ce4dd89156aeb8cdbdc544938a5cdc058481e4
This commit is contained in:
Efraim Flashner 2024-12-04 11:02:36 +02:00
parent 60519162ba
commit 4e0e5143af
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -6699,7 +6699,7 @@ (define-public rust-universal-hash-0.4
(package
(inherit rust-universal-hash-0.5)
(name "rust-universal-hash")
(version "0.4.0")
(version "0.4.1")
(source
(origin
(method url-fetch)
@ -6707,7 +6707,12 @@ (define-public rust-universal-hash-0.4
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
"01av09i0rqcl8f0xgvn2g07kzyafgbiwdhkfwq0m14kyd67lw8cz"))
(snippet
#~(begin (use-modules (guix build utils))
(substitute* "Cargo.toml"
(("\"= ?([[:digit:]]+(\\.[[:digit:]]+)*)" _ version)
(string-append "\"^" version)))))))
(arguments
`(#:cargo-inputs
(("rust-generic-array" ,rust-generic-array-0.14)