me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ctr-0.8.

* gnu/packages/crates-io.scm (rust-ctr-0.8): New variable.
(rust-ctr-0.6): Inherit from above.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Nicolas Graves 2022-01-07 15:21:32 +01:00 committed by Nicolas Goaziou
parent 8fc84a0b51
commit 904e1c1b9d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 30 additions and 15 deletions

View File

@ -13708,8 +13708,32 @@ use with sct crate.")
"This package provides an @code{__attribute__((constructor))} for Rust.")
(license (list license:asl2.0 license:expat))))
(define-public rust-ctr-0.8
(package
(name "rust-ctr")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "ctr" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-cipher" ,rust-cipher-0.3))))
(home-page "https://docs.rs/ctr/")
(synopsis "CTR block mode of operation")
(description "This package provides a generic implementations of CTR mode
for block ciphers. Mode functionality is accessed using traits from
re-exported cipher crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-ctr-0.6
(package
(inherit rust-ctr-0.8)
(name "rust-ctr")
(version "0.6.0")
(source
@ -13720,18 +13744,9 @@ use with sct crate.")
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "0zvyf13675hrlc37myj97k5ng7m1mj3d9p4ic4yvyhvl9zak0jpv"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cipher" ,rust-cipher-0.2))))
(home-page "https://docs.rs/ctr/")
(synopsis "CTR block mode of operation")
(description "This package provides a generic implementations of CTR mode
for block ciphers.
Mode functionality is accessed using traits from re-exported cipher crate.")
(license (list license:expat license:asl2.0))))
#:cargo-inputs (("rust-cipher" ,rust-cipher-0.2))))))
(define-public rust-ctrlc-3
(package