diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-10 06:59:14 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-11 15:39:11 +0000 |
commit | 935d53537c996e60d0af8ec2d79bb172b0b904d1 (patch) | |
tree | e741b844f17374dc87a2a9b162584d6e1ef4290d /gnu | |
parent | 8be33436db1715a18f2b569f1b19d6f11f6f739d (diff) | |
download | guix-935d53537c996e60d0af8ec2d79bb172b0b904d1.tar.gz |
gnu: Add rust-random-0.12.
* gnu/packages/crates-io.scm (rust-random-0.12): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6fe18413c8..1e357d7952 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -39875,6 +39875,24 @@ random number generators.") #:cargo-development-inputs (("rust-rand" ,rust-rand-0.6)))))) +(define-public rust-random-0.12 + (package + (name "rust-random") + (version "0.12.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "random" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "03s2c59vzcr5fmxbhlhxvrsnwgic488jl4br1k4q369lhls3mlcp")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/stainless-steel/random") + (synopsis "Sources of randomness") + (description "The package provides sources of randomness.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-random-fast-rng-0.1 (package (name "rust-random-fast-rng") |