mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add rust-rand-pcg-0.1.
* gnu/packages/rust-cbindgen.scm (rust-rand-pcg-0.1): New hidden variable.
This commit is contained in:
parent
9ad71c4aec
commit
1e956eb02b
1 changed files with 22 additions and 0 deletions
|
@ -482,3 +482,25 @@ (define rust-rand-os-0.1
|
|||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define rust-rand-pcg-0.1
|
||||
(package
|
||||
(name "rust-rand-pcg")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_pcg" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"0i0bdla18a8x4jn1w0fxsbs3jg7ajllz6azmch1zw33r06dv1ydb"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://crates.io/crates/rand_pcg")
|
||||
(synopsis
|
||||
"Selected PCG random number generators")
|
||||
(description
|
||||
"Selected PCG random number generators")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
|
Loading…
Reference in a new issue