mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: Add rust-scrypt-0.10.
* gnu/packages/crates-io.scm (rust-scrypt-0.10): New variable.
This commit is contained in:
parent
ec54633568
commit
5da01d4882
1 changed files with 22 additions and 0 deletions
|
@ -54643,6 +54643,28 @@ (define-public rust-scrypt-0.11
|
|||
function.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-scrypt-0.10
|
||||
(package
|
||||
(inherit rust-scrypt-0.11)
|
||||
(name "rust-scrypt")
|
||||
(version "0.10.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "scrypt" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0pglmppcl8mdzfxdv2x9dsjrwxhc1bm9zvxjibnlv59jnv9297lz"))))
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-hmac" ,rust-hmac-0.12)
|
||||
("rust-password-hash" ,rust-password-hash-0.4)
|
||||
("rust-pbkdf2" ,rust-pbkdf2-0.11)
|
||||
("rust-salsa20" ,rust-salsa20-0.10)
|
||||
("rust-sha2" ,rust-sha2-0.10))
|
||||
#:cargo-development-inputs
|
||||
(("rust-password-hash" ,rust-password-hash-0.4))))))
|
||||
|
||||
(define-public rust-scrypt-0.8
|
||||
(package
|
||||
(inherit rust-scrypt-0.11)
|
||||
|
|
Loading…
Reference in a new issue