gnu: rust-ripemd-0.1: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-ripemd-0.1): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: Ia7054d2f9d0f3ddd651ac4bce59d595413ba7893master
parent
fa6f82a269
commit
de9f901071
|
@ -3487,6 +3487,29 @@ Digital Signature Algorithm} (ECDSA).")
|
||||||
;; build dependencies
|
;; build dependencies
|
||||||
("rust-cc" ,rust-cc-1))))))
|
("rust-cc" ,rust-cc-1))))))
|
||||||
|
|
||||||
|
(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-sha-1-0.10
|
(define-public rust-sha-1-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-sha-1")
|
(name "rust-sha-1")
|
||||||
|
|
|
@ -56290,29 +56290,6 @@ MIME Message Headers.")
|
||||||
First In First Out} ring buffer with direct access to inner data.")
|
First In First Out} ring buffer with direct access to inner data.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(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
|
(define-public rust-riscv-0.7
|
||||||
(package
|
(package
|
||||||
(name "rust-riscv")
|
(name "rust-riscv")
|
||||||
|
|
Reference in New Issue