1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-09 22:50:34 +02: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:
Efraim Flashner
2019-10-23 09:58:56 +03:00
parent 9ad71c4aec
commit 1e956eb02b

View File

@@ -482,3 +482,25 @@ functionality.")
(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))))