me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rand-xoshiro-0.3.

* gnu/packages/crates-io.scm (rust-rand-xoshiro-0.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 12:10:43 -08:00 committed by Efraim Flashner
parent ceebedc433
commit 9d0864aae9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 29 additions and 0 deletions

View File

@ -3802,6 +3802,35 @@ useful types and distributions, and some randomness-related algorithms.")
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))
(define-public rust-rand-xoshiro-0.3
(package
(name "rust-rand-xoshiro")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "rand_xoshiro" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"07w3qgrac8r356lz5vqff42rly6yd9vs3g5lx5pbn13rcmb05rqb"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-byteorder" ,rust-byteorder-1.3)
("rust-rand-core" ,rust-rand-core-0.5)
("rust-serde" ,rust-serde-1.0))
#:cargo-development-inputs
(("rust-bincode" ,rust-bincode-1.1))))
(home-page "https://github.com/rust-random/rand")
(synopsis
"Xoshiro, xoroshiro and splitmix64 random number generators")
(description
"Xoshiro, xoroshiro and splitmix64 random number generators.")
(license (list license:expat license:asl2.0))))
(define-public rust-rawpointer-0.1 (define-public rust-rawpointer-0.1
(package (package
(name "rust-rawpointer") (name "rust-rawpointer")