me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-random-0.12.

* gnu/packages/crates-io.scm (rust-random-0.12): New variable.
master
Ricardo Wurmus 2021-11-10 06:59:14 +00:00
parent 8be33436db
commit 935d53537c
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 18 additions and 0 deletions

View File

@ -39875,6 +39875,24 @@ random number generators.")
#:cargo-development-inputs #:cargo-development-inputs
(("rust-rand" ,rust-rand-0.6)))))) (("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 (define-public rust-random-fast-rng-0.1
(package (package
(name "rust-random-fast-rng") (name "rust-random-fast-rng")