mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-tiny-keccak-2.
* gnu/packages/crates-io.scm (rust-tiny-keccak-2): New variable.
This commit is contained in:
parent
dfcc626316
commit
10db5297af
1 changed files with 23 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue