mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add rust-rand-0.6.
* gnu/packages/rust-cbindgen.scm (rust-rand-0.6): New hidden variable.
This commit is contained in:
parent
e8a28c8964
commit
054fd40cc6
1 changed files with 22 additions and 0 deletions
|
@ -319,3 +319,25 @@ (define rust-quote-1.0
|
|||
(description "Quasi-quoting macro quote!(...)")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define rust-rand-0.6
|
||||
(package
|
||||
(name "rust-rand")
|
||||
(version "0.6.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"1jl4449jcl4wgmzld6ffwqj5gwxrp8zvx8w573g1z368qg6xlwbd"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://crates.io/crates/rand")
|
||||
(synopsis "Random number generators and other randomness functionality")
|
||||
(description
|
||||
"This package contains random number generators and other randomness
|
||||
functionality.")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
|
Loading…
Reference in a new issue