me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-universal-hash-0.4.

* gnu/packages/crates-io.scm (rust-universal-hash-0.4): New variable.
master
Arun Isaac 2020-09-17 12:19:15 +05:30
parent a173f3a7e0
commit 284c427ca6
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 22 additions and 0 deletions

View File

@ -27229,6 +27229,28 @@ whitespace from a string.")
(license (list license:asl2.0
license:expat))))
(define-public rust-universal-hash-0.4
(package
(name "rust-universal-hash")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "universal-hash" version))
(file-name (string-append name "-" version ".tar.gz"))
(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))))
(define-public rust-unix-socket-0.5
(package
(name "rust-unix-socket")