mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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: Ia7054d2f9d0f3ddd651ac4bce59d595413ba7893
This commit is contained in:
parent
fa6f82a269
commit
de9f901071
2 changed files with 23 additions and 23 deletions
|
@ -3487,6 +3487,29 @@ (define-public rust-ring-0.13
|
|||
;; build dependencies
|
||||
("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
|
||||
(package
|
||||
(name "rust-sha-1")
|
||||
|
|
|
@ -56290,29 +56290,6 @@ (define-public rust-ringbuf-0.2
|
|||
First In First Out} ring buffer with direct access to inner data.")
|
||||
(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
|
||||
(package
|
||||
(name "rust-riscv")
|
||||
|
|
Loading…
Reference in a new issue