gnu: Add rust-tiny-keccak-2.

* gnu/packages/crates-io.scm (rust-tiny-keccak-2): New variable.
This commit is contained in:
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

View file

@ -46654,6 +46654,29 @@ (define-public rust-tiny-http-0.6
(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")