me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-universal-hash-0.5.

* gnu/packages/crates-io.scm (rust-universal-hash-0.5): New variable.
(rust-universal-hash-0.4): Inherit from rust-universal-hash-0.5.
master
Efraim Flashner 2023-02-22 12:03:15 +02:00
parent da49c824f8
commit bdadf22c6f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 6 deletions

View File

@ -66969,8 +66969,30 @@ whitespace from a string.")
clear display in the output.")
(license (list license:expat license:asl2.0))))
(define-public rust-universal-hash-0.5
(package
(name "rust-universal-hash")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "universal-hash" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1dfqh2jnf4pz2cr9v4adpyxinz658vadlbwsjgigf6cs7jvn0cbx"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crypto-common" ,rust-crypto-common-0.1)
("rust-subtle" ,rust-subtle-2))))
(home-page "https://github.com/RustCrypto/traits")
(synopsis "Trait for universal hash functions")
(description "This package provides traits for universal hash functions.")
(license (list license:expat license:asl2.0))))
(define-public rust-universal-hash-0.4
(package
(inherit rust-universal-hash-0.5)
(name "rust-universal-hash")
(version "0.4.0")
(source
@ -66981,15 +67003,10 @@ clear display in the output.")
(sha256
(base32
"00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-generic-array" ,rust-generic-array-0.14)
("rust-subtle" ,rust-subtle-2))))
(home-page "https://github.com/RustCrypto/traits")
(synopsis "Trait for universal hash functions")
(description "This package provides traits for universal hash functions.")
(license (list license:expat license:asl2.0))))
("rust-subtle" ,rust-subtle-2))))))
(define-public rust-universal-hash-0.3
(package