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:
Efraim Flashner 2024-01-21 17:25:25 +02:00
parent efb2b5493f
commit 4e84439c26
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 23 additions and 23 deletions

View file

@ -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")

View file

@ -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")