gnu: Add rust-salsa20-0.9.

* gnu/packages/crates-io.scm (rust-salsa20-0.9): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Nicolas Graves 2022-01-07 15:03:25 +01:00 committed by Nicolas Goaziou
parent 745584a165
commit 8aad504cc8
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -47407,6 +47407,29 @@ (define-public rust-salsa-macros-0.17
"This package provides a procedural macros for the salsa crate.")
(license (list license:asl2.0 license:expat))))
(define-public rust-salsa20-0.9
(package
(name "rust-salsa20")
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "salsa20" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "11i646kpgimimqiq8hyi0b7ngp588f7nl9xsc317d9kdcxgvn3qc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cipher" ,rust-cipher-0.3)
("rust-zeroize" ,rust-zeroize-1))))
(home-page "https://github.com/RustCrypto/stream-ciphers")
(synopsis "Salsa20 Stream Cipher")
(description "Salsa20 is a collection of stream cipher algorithms written
in pure Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-salsa-0.17
(package
(name "rust-salsa")