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:
Efraim Flashner 2019-10-23 09:51:51 +03:00
parent 800bc0fbc3
commit 235d82dfc0
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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))))