gnu: Add rust-ripemd-0.1.
* gnu/packages/crates-io.scm (rust-ripemd-0.1): New variable.
This commit is contained in:
parent
6beffdf5ac
commit
25ab02c093
1 changed files with 23 additions and 0 deletions
|
@ -51505,6 +51505,29 @@ (define-public rust-ring-0.13
|
|||
(lambda _
|
||||
(invoke "python" "make_curve25519_tables.py")))))))))))
|
||||
|
||||
(define-public rust-ripemd-0.1
|
||||
(package
|
||||
(name "rust-ripemd")
|
||||
(version "0.1.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "ripemd" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"17xh5yl9wjjj2v18rh3m8ajlmdjg1yj13l6r9rj3mnbss4i444mx"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-digest" ,rust-digest-0.10))
|
||||
#:cargo-development-inputs
|
||||
(("rust-digest" ,rust-digest-0.10)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.2))))
|
||||
(home-page "https://github.com/RustCrypto/hashes")
|
||||
(synopsis "Pure Rust implementation of the RIPEMD hash functions")
|
||||
(description "Pure Rust implementation of the RIPEMD hash functions")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-riscv-0.7
|
||||
(package
|
||||
(name "rust-riscv")
|
||||
|
|
Loading…
Reference in a new issue