gnu: rust-keccak-0.1: Update to 0.1.4.
* gnu/packages/crates-io.scm (rust-keccak-0.1): Update to 0.1.4. [arguments]: Don't skip build. [cargo-inputs]: Add rust-cpufeatures-0.2. [home-page]: Update home-page. [description]: Use a complete sentence. [license]: Update licenses.
parent
c425fd7c3d
commit
295bfaa481
|
@ -31511,20 +31511,23 @@ debugging.")
|
||||||
(define-public rust-keccak-0.1
|
(define-public rust-keccak-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-keccak")
|
(name "rust-keccak")
|
||||||
(version "0.1.0")
|
(version "0.1.4")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (crate-uri "keccak" version))
|
||||||
(uri (crate-uri "keccak" version))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(sha256
|
||||||
(sha256
|
(base32
|
||||||
(base32 "19ybbvxrdk9yy65rk7f5ad0hcxszkjwph68yzkj3954lnir1bhk7"))))
|
"0h7rcvwvf20g4k8cx2brnrqvah6jwzs84w09vrj4743dczc5wvcg"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments `(#:skip-build? #t))
|
(arguments
|
||||||
(home-page "https://crates.io/crates/keccak")
|
`(#:cargo-inputs (("rust-cpufeatures" ,rust-cpufeatures-0.2))))
|
||||||
|
(home-page "https://github.com/RustCrypto/sponges/tree/master/keccak")
|
||||||
(synopsis "Keccak-f sponge function for Rust")
|
(synopsis "Keccak-f sponge function for Rust")
|
||||||
(description "This package provides a keccak-f sponge function")
|
(description
|
||||||
(license license:cc0)))
|
"Pure Rust implementation of the Keccak sponge function including the
|
||||||
|
keccak-f and keccak-p variants.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-kernel32-sys-0.2
|
(define-public rust-kernel32-sys-0.2
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue