mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
300ec64cf3
commit
9c2838617c
1 changed files with 22 additions and 0 deletions
|
@ -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))))
|
||||
|
|
Loading…
Reference in a new issue