mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add rust-rand-os-0.1.
* gnu/packages/rust-cbindgen.scm (rust-rand-os-0.1): New hidden variable.
This commit is contained in:
parent
9c2838617c
commit
9ad71c4aec
1 changed files with 20 additions and 0 deletions
|
@ -462,3 +462,23 @@ (define rust-rand-jitter-0.1
|
||||||
(properties '((hidden? . #t)))
|
(properties '((hidden? . #t)))
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define rust-rand-os-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-rand-os")
|
||||||
|
(version "0.1.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "rand_os" version))
|
||||||
|
(file-name (string-append name "-" version ".crate"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0wahppm0s64gkr2vmhcgwc0lij37in1lgfxg5rbgqlz0l5vgcxbv"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://crates.io/crates/rand_os")
|
||||||
|
(synopsis "OS backed Random Number Generator")
|
||||||
|
(description "OS backed Random Number Generator")
|
||||||
|
(properties '((hidden? . #t)))
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
Loading…
Reference in a new issue