gnu: Add rust-hmac-0.7.
* gnu/packages/crates-io.scm (rust-hmac-0.7): New variable.
This commit is contained in:
parent
096a712e42
commit
a8b83c6c44
1 changed files with 29 additions and 0 deletions
|
@ -9801,6 +9801,35 @@ compile time.")
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
|
(("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
|
(define-public rust-hostname-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-hostname")
|
(name "rust-hostname")
|
||||||
|
|
Reference in a new issue