gnu: Add rust-hmac-0.7.

* gnu/packages/crates-io.scm (rust-hmac-0.7): New variable.
This commit is contained in:
Efraim Flashner 2020-06-28 08:43:24 +03:00
parent 096a712e42
commit a8b83c6c44
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -9801,6 +9801,35 @@ (define-public rust-hex-literal-impl-0.1
`(#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
(define-public rust-hmac-0.7
(package
(name "rust-hmac")
(version "0.7.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "hmac" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"15cnwpssp2n1kdm9x7abir67f2hp3q6rdfj1mcck3hm4rmj5xjsx"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
("rust-digest" ,rust-digest-0.8))
#:cargo-development-inputs
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
("rust-md-5" ,rust-md-5-0.8)
("rust-sha2" ,rust-sha2-0.8))))
(home-page "https://github.com/RustCrypto/MACs")
(synopsis "Generic implementation of Hash-based Message Authentication Code")
(description
"This package provides a generic implementation of @acronym{HMAC,
Hash-based Message Authentication Code}.")
(license (list license:expat license:asl2.0))))
(define-public rust-hostname-0.1
(package
(name "rust-hostname")