mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add rust-hmac-0.8.
* gnu/packages/crates-io.scm (rust-hmac-0.8): New variable. (rust-hmac-0.7): Inherit from rust-hmac-0.8.
This commit is contained in:
parent
266fadf011
commit
d1514c9bba
1 changed files with 31 additions and 8 deletions
|
@ -9935,8 +9935,38 @@ (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.8
|
||||
(package
|
||||
(name "rust-hmac")
|
||||
(version "0.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "hmac" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0h48wc7iysh4xd6ci4prh8bb7nszijrh9w3blaaq8a6cilk8hs0j"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
||||
("rust-digest" ,rust-digest-0.9))
|
||||
#: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))))
|
||||
|
||||
(define-public rust-hmac-0.7
|
||||
(package
|
||||
(inherit rust-hmac-0.8)
|
||||
(name "rust-hmac")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
|
@ -9948,7 +9978,6 @@ (define-public rust-hmac-0.7
|
|||
(sha256
|
||||
(base32
|
||||
"15cnwpssp2n1kdm9x7abir67f2hp3q6rdfj1mcck3hm4rmj5xjsx"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
|
||||
|
@ -9956,13 +9985,7 @@ (define-public rust-hmac-0.7
|
|||
#: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))))
|
||||
("rust-sha2" ,rust-sha2-0.8))))))
|
||||
|
||||
(define-public rust-hostname-0.1
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue