3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-keccak-0.1.

* gnu/packages/crates-io.scm (rust-keccak-0.1): New variable.
This commit is contained in:
Hartmut Goebel 2020-11-16 21:35:15 +01:00
parent d3c91e9737
commit 9e92105fc9
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -12983,6 +12983,24 @@ friction with idiomatic Rust structs to ease interopability.")
(license (list license:asl2.0
license:expat))))
(define-public rust-keccak-0.1
(package
(name "rust-keccak")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "keccak" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "19ybbvxrdk9yy65rk7f5ad0hcxszkjwph68yzkj3954lnir1bhk7"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://crates.io/crates/keccak")
(synopsis "Keccak-f sponge function for Rust")
(description "This package provides a keccak-f sponge function")
(license license:cc0)))
(define-public rust-kernel32-sys-0.2
(package
(name "rust-kernel32-sys")