me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-tiny-keccak-2.

* gnu/packages/crates-io.scm (rust-tiny-keccak-2): New variable.
master
Nicolas Goaziou 2021-06-15 13:10:55 +02:00
parent dfcc626316
commit 10db5297af
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -46654,6 +46654,29 @@ manipulation in Rust.")
(description "This package provides a low level HTTP server library.")
(license license:asl2.0)))
(define-public rust-tiny-keccak-2
(package
(name "rust-tiny-keccak")
(version "2.0.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "tiny-keccak" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0dq2x0hjffmixgyf6xv9wgsbcxkd65ld0wrfqmagji8a829kg79c"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-crunchy" ,rust-crunchy-0.2))))
(home-page "https://github.com/debris/tiny-keccak")
(synopsis "Implementation of Keccak derived functions")
(description
"Tiny Keccak provides ann implementation of Keccak derived functions
specified in FIPS-202, SP800-185 and KangarooTwelve.")
(license license:cc0)))
(define-public rust-tinytemplate-1
(package
(name "rust-tinytemplate")