mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add rust-rand-xorshift-0.1.
* gnu/packages/rust-cbindgen.scm (rust-rand-xorshift-0.1): New hidden variable.
This commit is contained in:
parent
1e956eb02b
commit
308480c3d6
1 changed files with 21 additions and 0 deletions
|
@ -504,3 +504,24 @@ (define rust-rand-pcg-0.1
|
|||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define rust-rand-xorshift-0.1
|
||||
(package
|
||||
(name "rust-rand-xorshift")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_xorshift" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"0p2x8nr00hricpi2m6ca5vysiha7ybnghz79yqhhx6sl4gkfkxyb"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://crates.io/crates/rand_xorshift")
|
||||
(synopsis "Xorshift random number generator")
|
||||
(description
|
||||
"Xorshift random number generator")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
|
Loading…
Reference in a new issue