me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-aes-0.3.

* gnu/packages/crates-io.scm (rust-aes-0.3): New variable.
master
Nicolas Goaziou 2021-02-10 11:00:36 +01:00
parent a52b2a0617
commit ee6f3e7954
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 19 additions and 0 deletions

View File

@ -932,6 +932,25 @@ with Associated Data (AEAD) algorithms.")
ciphers implementations.")
(license (list license:expat license:asl2.0))))
(define-public rust-aes-0.3
(package
(inherit rust-aes-0.4)
(name "rust-aes")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "aes" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1j90iwpax0y1dqq14i8y9xgpcnnlgnljwkxg3mhzrralwf7ivssl"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-aes-soft" ,rust-aes-soft-0.3)
("rust-aesni" ,rust-aesni-0.6)
("rust-block-cipher-trait" ,rust-block-cipher-trait-0.6))))))
(define-public rust-aes-gcm-0.6
(package
(name "rust-aes-gcm")