mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add rust-rand-mt-4.
* gnu/packages/crates-io.scm (rust-rand-mt-4): New variable. Change-Id: I9e39eb74292bbb0b3881f11c1449cf5333d1ad47 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
366d39e617
commit
c73e347ec0
1 changed files with 24 additions and 0 deletions
|
@ -62137,6 +62137,30 @@ (define-public rust-rand-jitter-0.1
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-rand-mt-4
|
||||
(package
|
||||
(name "rust-rand-mt")
|
||||
(version "4.2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_mt" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1pz2l6kwhx9rvfkr8n4c4klr49fancpc31wqc19543nnvv31iq29"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-rand-core" ,rust-rand-core-0.6))
|
||||
#:cargo-development-inputs
|
||||
(("rust-getrandom" ,rust-getrandom-0.2)
|
||||
("rust-version-sync" ,rust-version-sync-0.9))))
|
||||
(home-page "https://github.com/artichoke/rand_mt")
|
||||
(synopsis "Reference Mersenne Twister random number generators")
|
||||
(description "This package provides Reference Mersenne Twister random number
|
||||
generators.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rand-os-0.2
|
||||
(package
|
||||
(name "rust-rand-os")
|
||||
|
|
Loading…
Reference in a new issue