mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-rand-isaac-0.1.
* gnu/packages/rust-cbindgen.scm (rust-rand-isaac-0.1): New hidden variable.
This commit is contained in:
parent
56fed052cf
commit
300ec64cf3
1 changed files with 20 additions and 0 deletions
|
@ -420,3 +420,23 @@ (define rust-rand-hc-0.1
|
|||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define rust-rand-isaac-0.1
|
||||
(package
|
||||
(name "rust-rand-isaac")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_isaac" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"027flpjr4znx2csxk7gxb7vrf9c7y5mydmvg5az2afgisp4rgnfy"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://crates.io/crates/rand_isaac")
|
||||
(synopsis "ISAAC random number generator")
|
||||
(description "ISAAC random number generator")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
|
Loading…
Reference in a new issue