mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 06:20:18 +01:00
gnu: rust-cbc-0.1: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-cbc-0.1): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I5a2c6b3416d583636ca3ffa6360bfea080e1374f
This commit is contained in:
parent
f0a2b73c01
commit
91dd5744c9
2 changed files with 24 additions and 24 deletions
|
@ -956,6 +956,30 @@ ciphers.")
|
|||
"The ChaCha family of stream ciphers.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-cbc-0.1
|
||||
(package
|
||||
(name "rust-cbc")
|
||||
(version "0.1.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cbc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"19l9y9ccv1ffg6876hshd123f2f8v7zbkc4nkckqycxf8fajmd96"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4))
|
||||
#:cargo-development-inputs
|
||||
(("rust-aes" ,rust-aes-0.8)
|
||||
("rust-cipher" ,rust-cipher-0.4)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.3))))
|
||||
(home-page "https://github.com/RustCrypto/block-modes")
|
||||
(synopsis "Cipher Block Chaining (CBC) block cipher mode of operation")
|
||||
(description "Cipher Block Chaining (CBC) block cipher mode of operation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-chacha20-0.9
|
||||
(package
|
||||
(name "rust-chacha20")
|
||||
|
|
|
@ -10065,30 +10065,6 @@ box''.")
|
|||
types that works on stable Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-cbc-0.1
|
||||
(package
|
||||
(name "rust-cbc")
|
||||
(version "0.1.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cbc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"19l9y9ccv1ffg6876hshd123f2f8v7zbkc4nkckqycxf8fajmd96"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4))
|
||||
#:cargo-development-inputs
|
||||
(("rust-aes" ,rust-aes-0.8)
|
||||
("rust-cipher" ,rust-cipher-0.4)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.3))))
|
||||
(home-page "https://github.com/RustCrypto/block-modes")
|
||||
(synopsis "Cipher Block Chaining (CBC) block cipher mode of operation")
|
||||
(description "Cipher Block Chaining (CBC) block cipher mode of operation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-cblas-sys-0.1
|
||||
(package
|
||||
(name "rust-cblas-sys")
|
||||
|
|
Loading…
Add table
Reference in a new issue