gnu: Add rust-scrypt-0.5.

* gnu/packages/crates-io.scm (rust-scrypt-0.5): New variable.
(rust-scrypt-0.3): Inherit from above.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Attila Lendvai 2022-01-19 11:53:52 +01:00 committed by Nicolas Goaziou
parent 79b30bc66c
commit 318928f748
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -51245,10 +51245,34 @@ (define-public rust-scrypt-0.8
function.")
(license (list license:expat license:asl2.0))))
(define-public rust-scrypt-0.3
(define-public rust-scrypt-0.5
(package
(inherit rust-scrypt-0.8)
(name "rust-scrypt")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "scrypt" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1fgdmjdjx3lj92nswkxrq9nlv4vv7livg83nfybmv4izn3d9594d"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-base64" ,rust-base64-0.13)
("rust-hmac" ,rust-hmac-0.10)
("rust-pbkdf2" ,rust-pbkdf2-0.6)
("rust-rand" ,rust-rand-0.7)
("rust-rand-core" ,rust-rand-core-0.5)
("rust-salsa20" ,rust-salsa20-0.7)
("rust-sha2" ,rust-sha2-0.9)
("rust-subtle" ,rust-subtle-2))))))
(define-public rust-scrypt-0.3
(package
(inherit rust-scrypt-0.5)
(name "rust-scrypt")
(version "0.3.0")
(source
(origin