mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 11:00:36 +02:00
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
This commit is contained in:
parent
b183cce3b0
commit
1f4c5d496f
2 changed files with 44 additions and 44 deletions
|
@ -830,6 +830,50 @@ algorithms. This package is deprecated. Please use block-cipher instead.")
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-generic-array" ,rust-generic-array-0.8))))))
|
(("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
|
(define-public rust-blowfish-0.9
|
||||||
(package
|
(package
|
||||||
(name "rust-blowfish")
|
(name "rust-blowfish")
|
||||||
|
|
|
@ -6994,50 +6994,6 @@ storage.")
|
||||||
(("rust-arrayref" ,rust-arrayref-0.3)
|
(("rust-arrayref" ,rust-arrayref-0.3)
|
||||||
("rust-byte-tools" ,rust-byte-tools-0.2))))))
|
("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
|
(define-public rust-block-padding-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-block-padding")
|
(name "rust-block-padding")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue