mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add rust-crypto-hash-0.3.
* gnu/packages/crates-io.scm (rust-crypto-hash-0.3): New variable.
This commit is contained in:
parent
2e79f847fd
commit
bc11792923
1 changed files with 28 additions and 0 deletions
|
@ -10108,6 +10108,34 @@ (define-public rust-crypto-tests-0.5
|
|||
algorithms.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-crypto-hash-0.3
|
||||
(package
|
||||
(name "rust-crypto-hash")
|
||||
(version "0.3.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "crypto-hash" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1jnxgpk0j29hzcv42viq5dckyfjnxdjsar55366j95zx80i1cxwa"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-commoncrypto" ,rust-commoncrypto-0.2)
|
||||
("rust-hex" ,rust-hex-0.3)
|
||||
("rust-openssl" ,rust-openssl-0.10)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
(inputs
|
||||
`(("openssl" ,openssl)))
|
||||
(home-page "https://github.com/malept/crypto-hash")
|
||||
(synopsis "Wrapper for OS-level cryptographic hash functions")
|
||||
(description "This package provides a wrapper for OS-level cryptographic
|
||||
hash functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-cryptovec-0.4
|
||||
(package
|
||||
(name "rust-cryptovec")
|
||||
|
|
Loading…
Reference in a new issue