mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: rust-block-cipher-0.7: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-block-cipher-0.7): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I37ed136b4850a4b90b05fc7ca957308d49408e09
This commit is contained in:
parent
efb2b5493f
commit
4e84439c26
2 changed files with 23 additions and 23 deletions
|
@ -767,6 +767,29 @@ (define-public rust-blakeout-0.3
|
|||
based on Blake2s.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-block-cipher-0.7
|
||||
(package
|
||||
(name "rust-block-cipher")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "block-cipher" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"043zgfz1x4sxkdcsyabrcr440fcwhfpcqqa54jm7zp35wx4n84zs"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-blobby" ,rust-blobby-0.1)
|
||||
("rust-generic-array" ,rust-generic-array-0.14))))
|
||||
(home-page "https://github.com/RustCrypto/traits")
|
||||
(synopsis "Traits for description of block ciphers")
|
||||
(description "This package provides traits for description of block
|
||||
ciphers.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-botan-0.10
|
||||
(package
|
||||
(name "rust-botan")
|
||||
|
|
|
@ -6994,29 +6994,6 @@ (define-public rust-block-buffer-0.3
|
|||
(("rust-arrayref" ,rust-arrayref-0.3)
|
||||
("rust-byte-tools" ,rust-byte-tools-0.2))))))
|
||||
|
||||
(define-public rust-block-cipher-0.7
|
||||
(package
|
||||
(name "rust-block-cipher")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "block-cipher" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"043zgfz1x4sxkdcsyabrcr440fcwhfpcqqa54jm7zp35wx4n84zs"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-blobby" ,rust-blobby-0.1)
|
||||
("rust-generic-array" ,rust-generic-array-0.14))))
|
||||
(home-page "https://github.com/RustCrypto/traits")
|
||||
(synopsis "Traits for description of block ciphers")
|
||||
(description "This package provides traits for description of block
|
||||
ciphers.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-block-cipher-trait-0.6
|
||||
(package
|
||||
(name "rust-block-cipher-trait")
|
||||
|
|
Loading…
Reference in a new issue