me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-random-fast-rng-0.1.

* gnu/packages/crates-io.scm (rust-random-fast-rng-0.1): New variable.
master
Nicolas Goaziou 2020-12-20 15:50:29 +01:00
parent cf5fdbf3cf
commit 9effe707ae
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -24776,6 +24776,29 @@ random number generators.")
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.6))))))
(define-public rust-random-fast-rng-0.1
(package
(name "rust-random-fast-rng")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "random-fast-rng" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "18q577c8j2j9j044b5fnj1xw1lwkyjrkl3agzp3lvx3iln24wy4m"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-doc-comment" ,rust-doc-comment-0.3)
("rust-random-trait" ,rust-random-trait-0.1))))
(home-page "https://github.com/elichai/random-rs")
(synopsis "Library for fast non cryptographic random number generator")
(description
"This package is a Rust library for fast non cryptographic random number
generator.")
(license (list license:expat license:asl2.0))))
(define-public rust-random-trait-0.1
(package
(name "rust-random-trait")