mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 08:07:29 +01:00
gnu: Add rust-hmac-0.11.
* gnu/packages/crates-io.scm (rust-hmac-0.11): New variable. (rust-hmac-0.8): Inherit from rust-hmac-0.11. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
83d342a26d
commit
8704eccea4
1 changed files with 32 additions and 8 deletions
|
@ -20244,8 +20244,39 @@ (define-public rust-hkdf-0.8
|
|||
(("rust-digest" ,rust-digest-0.8)
|
||||
("rust-hmac" ,rust-hmac-0.7))))))
|
||||
|
||||
(define-public rust-hmac-0.11
|
||||
(package
|
||||
(name "rust-hmac")
|
||||
(version "0.11.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "hmac" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-crypto-mac" ,rust-crypto-mac-0.11)
|
||||
("rust-digest" ,rust-digest-0.9))
|
||||
#:cargo-development-inputs
|
||||
(("rust-crypto-mac" ,rust-crypto-mac-0.11)
|
||||
("rust-md-5" ,rust-md-5-0.9)
|
||||
("rust-sha2" ,rust-sha2-0.9)
|
||||
("rust-streebog" ,rust-streebog-0.9))))
|
||||
(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-hmac-0.8
|
||||
(package
|
||||
(inherit rust-hmac-0.11)
|
||||
(name "rust-hmac")
|
||||
(version "0.8.1")
|
||||
(source
|
||||
|
@ -20257,7 +20288,6 @@ (define-public rust-hmac-0.8
|
|||
(sha256
|
||||
(base32
|
||||
"0h48wc7iysh4xd6ci4prh8bb7nszijrh9w3blaaq8a6cilk8hs0j"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
||||
|
@ -20265,13 +20295,7 @@ (define-public rust-hmac-0.8
|
|||
#:cargo-development-inputs
|
||||
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
||||
("rust-md-5" ,rust-md-5-0.9)
|
||||
("rust-sha2" ,rust-sha2-0.9))))
|
||||
(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))))
|
||||
("rust-sha2" ,rust-sha2-0.9))))))
|
||||
|
||||
(define-public rust-hmac-0.7
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue