mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: Add rust-rand-chacha-0.1.
* gnu/packages/rust-cbindgen.scm (rust-rand-chacha-0.1): New hidden variable.
This commit is contained in:
parent
054fd40cc6
commit
800bc0fbc3
1 changed files with 20 additions and 0 deletions
|
@ -341,3 +341,23 @@ (define rust-rand-0.6
|
|||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define rust-rand-chacha-0.1
|
||||
(package
|
||||
(name "rust-rand-chacha")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_chacha" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"1vxwyzs4fy1ffjc8l00fsyygpiss135irjf7nyxgq2v0lqf3lvam"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://crates.io/crates/rand_chacha")
|
||||
(synopsis "ChaCha random number generator")
|
||||
(description "ChaCha random number generator")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
|
Loading…
Reference in a new issue