mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: rust-blowfish-0.9: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-blowfish-0.9): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I372c9c460b7cddaec41984f4abc8d4ee75908b18
This commit is contained in:
parent
4e84439c26
commit
7496998bc8
2 changed files with 23 additions and 23 deletions
|
@ -790,6 +790,29 @@ (define-public rust-block-cipher-0.7
|
|||
ciphers.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-blowfish-0.9
|
||||
(package
|
||||
(name "rust-blowfish")
|
||||
(version "0.9.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "blowfish" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-cipher" ,rust-cipher-0.4))
|
||||
#:cargo-development-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4))))
|
||||
(home-page "https://github.com/RustCrypto/block-ciphers")
|
||||
(synopsis "Blowfish block cipher")
|
||||
(description "Blowfish block cipher")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-botan-0.10
|
||||
(package
|
||||
(name "rust-botan")
|
||||
|
|
|
@ -7204,29 +7204,6 @@ (define-public rust-blocking-0.4
|
|||
("rust-parking" ,rust-parking-1)
|
||||
("rust-waker-fn" ,rust-waker-fn-1))))))
|
||||
|
||||
(define-public rust-blowfish-0.9
|
||||
(package
|
||||
(name "rust-blowfish")
|
||||
(version "0.9.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "blowfish" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-cipher" ,rust-cipher-0.4))
|
||||
#:cargo-development-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4))))
|
||||
(home-page "https://github.com/RustCrypto/block-ciphers")
|
||||
(synopsis "Blowfish block cipher")
|
||||
(description "Blowfish block cipher")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-borsh-1
|
||||
(package
|
||||
(name "rust-borsh")
|
||||
|
|
Loading…
Reference in a new issue