gnu: Add rust-fuchsia-cprng.

* gnu/packages/crates-io.scm (rust-fuchsia-cprng): New variable.
master
Efraim Flashner 2019-08-29 14:28:00 +03:00
parent 21931d0f7d
commit 4247954bbc
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -509,6 +509,27 @@ implementation that is more efficient for smaller hash keys.")
process and much more.")
(license license:expat)))
(define-public rust-fuchsia-cprng
(package
(name "rust-fuchsia-cprng")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "fuchsia-cprng" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1fnkqrbz7ixxzsb04bsz9p0zzazanma8znfdqjvh39n14vapfvx0"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f)) ; tests require zircon
(home-page "https://fuchsia.googlesource.com/fuchsia/+/master/garnet/public/rust/fuchsia-cprng")
(synopsis "Fuchsia cryptographically secure pseudorandom number generator")
(description "Rust crate for the Fuchsia cryptographically secure
pseudorandom number generator")
(license license:bsd-3)))
(define-public rust-fuchsia-zircon
(package
(name "rust-fuchsia-zircon")