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