me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ripemd-0.1.

* gnu/packages/crates-io.scm (rust-ripemd-0.1): New variable.
Efraim Flashner 2023-05-22 17:56:38 +03:00
parent 6beffdf5ac
commit 25ab02c093
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -51505,6 +51505,29 @@ Digital Signature Algorithm} (ECDSA).")
(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")