mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 02:20:53 +02:00
gnu: Add rust-hkdf-0.11.
* gnu/packages/crates-io.scm (rust-hkdf-0.11): New variable. (rust-hkdf-0.9): Inherit from above. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
29bd8ce17e
commit
4f45a5ee2d
1 changed files with 31 additions and 7 deletions
|
@ -24311,8 +24311,38 @@ 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-hkdf-0.11
|
||||||
|
(package
|
||||||
|
(name "rust-hkdf")
|
||||||
|
(version "0.11.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hkdf" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0sw8bz79xqq3bc5dh6nzv084g7va13j3lrqf91c10a2wimbnsw01"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-digest" ,rust-digest-0.9)
|
||||||
|
("rust-hmac" ,rust-hmac-0.11))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-bencher" ,rust-bencher-0.1)
|
||||||
|
("rust-blobby" ,rust-blobby-0.3)
|
||||||
|
("rust-crypto-tests" ,rust-crypto-tests-0.5)
|
||||||
|
("rust-hex" ,rust-hex-0.4)
|
||||||
|
("rust-sha-1" ,rust-sha-1-0.9)
|
||||||
|
("rust-sha2" ,rust-sha2-0.9))))
|
||||||
|
(home-page "https://github.com/RustCrypto/KDFs/")
|
||||||
|
(synopsis "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)")
|
||||||
|
(description "This package provides a HMAC-based Extract-and-Expand Key
|
||||||
|
Derivation Function (HKDF).")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-hkdf-0.9
|
(define-public rust-hkdf-0.9
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-hkdf-0.11)
|
||||||
(name "rust-hkdf")
|
(name "rust-hkdf")
|
||||||
(version "0.9.0")
|
(version "0.9.0")
|
||||||
(source
|
(source
|
||||||
|
@ -24323,7 +24353,6 @@ compile time.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jdvmf8aadk3s0kn9kk3dj00nprjk9glks5f8dm55r43af34j4gy"))))
|
"1jdvmf8aadk3s0kn9kk3dj00nprjk9glks5f8dm55r43af34j4gy"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-digest" ,rust-digest-0.9)
|
(("rust-digest" ,rust-digest-0.9)
|
||||||
|
@ -24333,12 +24362,7 @@ compile time.")
|
||||||
("rust-crypto-tests" ,rust-crypto-tests-0.5)
|
("rust-crypto-tests" ,rust-crypto-tests-0.5)
|
||||||
("rust-hex" ,rust-hex-0.4)
|
("rust-hex" ,rust-hex-0.4)
|
||||||
("rust-sha-1" ,rust-sha-1-0.9)
|
("rust-sha-1" ,rust-sha-1-0.9)
|
||||||
("rust-sha2" ,rust-sha2-0.9))))
|
("rust-sha2" ,rust-sha2-0.9))))))
|
||||||
(home-page "https://github.com/RustCrypto/KDFs/")
|
|
||||||
(synopsis "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)")
|
|
||||||
(description "This package provides a HMAC-based Extract-and-Expand Key
|
|
||||||
Derivation Function (HKDF).")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-hkdf-0.8
|
(define-public rust-hkdf-0.8
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue