me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-password-hash-0.1.

* gnu/packages/crates-io.scm (rust-password-hash-0.1): New variable. Inherit
from rust-password-hash-0.3.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Attila Lendvai 2022-01-19 11:09:29 +01:00 committed by Nicolas Goaziou
parent 932aa1b345
commit 09279ad1f3
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 18 additions and 0 deletions

View File

@ -39783,6 +39783,24 @@ the PHC string format (a well-defined subset of the Modular Crypt
Format (MCF).")
(license (list license:expat license:asl2.0))))
(define-public rust-password-hash-0.1
(package
(inherit rust-password-hash-0.3)
(name "rust-password-hash")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "password-hash" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1ymh3np2bamjy8rszimksxcp264dclil4620bxm8rff9pyj6m62l"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-base64ct" ,rust-base64ct-1)
("rust-rand-core" ,rust-rand-core-0.6))))))
(define-public rust-paste-1
(package
(name "rust-paste")