me
/
guix
Archived
1
0
Fork 0

gnu: rust-block-modes: Move to (gnu packages crates-crypto).

* gnu/packages/crates-io.scm (rust-block-modes-0.8,
rust-block-modes-0.7): Move from here ...
* gnu/packages/crates-crypto.scm: ... to here.

Change-Id: I69ec6ff8dc819cf6fb3672561729c4cbb5686392
master
Efraim Flashner 2024-01-21 19:42:59 +02:00
parent b183cce3b0
commit 1f4c5d496f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
2 changed files with 44 additions and 44 deletions

View File

@ -830,6 +830,50 @@ algorithms. This package is deprecated. Please use block-cipher instead.")
`(#:cargo-inputs
(("rust-generic-array" ,rust-generic-array-0.8))))))
(define-public rust-block-modes-0.8
(package
(name "rust-block-modes")
(version "0.8.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "block-modes" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "13id7rw1lhi83i701za8w5is3a8qkf4vfigqw3f8jp8mxldkvc1c"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-block-padding" ,rust-block-padding-0.2)
("rust-cipher" ,rust-cipher-0.3))))
(home-page "https://github.com/RustCrypto/block-ciphers")
(synopsis "Block cipher modes of operation")
(description "This package provides a collection of block ciphers
and block modes.")
(license (list license:expat license:asl2.0))))
(define-public rust-block-modes-0.7
(package
(inherit rust-block-modes-0.8)
(name "rust-block-modes")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "block-modes" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "1w3jc3n7k4xq98b9mfina4wwpg1fq1s3b0mm5whqialb7q3yi82p"))))
(arguments
`(#:cargo-inputs
(("rust-block-padding" ,rust-block-padding-0.2)
("rust-cipher" ,rust-cipher-0.2))
#:cargo-development-inputs
(("rust-aes" ,rust-aes-0.6)
("rust-hex-literal" ,rust-hex-literal-0.2))))))
(define-public rust-blowfish-0.9
(package
(name "rust-blowfish")

View File

@ -6994,50 +6994,6 @@ storage.")
(("rust-arrayref" ,rust-arrayref-0.3)
("rust-byte-tools" ,rust-byte-tools-0.2))))))
(define-public rust-block-modes-0.8
(package
(name "rust-block-modes")
(version "0.8.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "block-modes" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "13id7rw1lhi83i701za8w5is3a8qkf4vfigqw3f8jp8mxldkvc1c"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-block-padding" ,rust-block-padding-0.2)
("rust-cipher" ,rust-cipher-0.3))))
(home-page "https://github.com/RustCrypto/block-ciphers")
(synopsis "Block cipher modes of operation")
(description "This package provides a collection of block ciphers
and block modes.")
(license (list license:expat license:asl2.0))))
(define-public rust-block-modes-0.7
(package
(inherit rust-block-modes-0.8)
(name "rust-block-modes")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "block-modes" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "1w3jc3n7k4xq98b9mfina4wwpg1fq1s3b0mm5whqialb7q3yi82p"))))
(arguments
`(#:cargo-inputs
(("rust-block-padding" ,rust-block-padding-0.2)
("rust-cipher" ,rust-cipher-0.2))
#:cargo-development-inputs
(("rust-aes" ,rust-aes-0.6)
("rust-hex-literal" ,rust-hex-literal-0.2))))))
(define-public rust-block-padding-0.3
(package
(name "rust-block-padding")