gnu: Add rust-rand-jitter-0.1.

* gnu/packages/rust-cbindgen.scm (rust-rand-jitter-0.1): New hidden
variable.
This commit is contained in:
Efraim Flashner 2019-10-23 09:57:37 +03:00
parent 300ec64cf3
commit 9c2838617c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -440,3 +440,25 @@ (define rust-rand-isaac-0.1
(properties '((hidden? . #t)))
(license (list license:asl2.0
license:expat))))
(define rust-rand-jitter-0.1
(package
(name "rust-rand-jitter")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "rand_jitter" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"16z387y46bfz3csc42zxbjq89vcr1axqacncvv8qhyy93p4xarhi"))))
(build-system cargo-build-system)
(home-page "https://github.com/rust-random/rand")
(synopsis
"Random number generator based on timing jitter")
(description
"Random number generator based on timing jitter")
(properties '((hidden? . #t)))
(license (list license:asl2.0
license:expat))))