mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05:00
gnu: rust-rand-isaac-0.1: Don't hide package.
* gnu/packages/crates-io.scm (rust-rand-isaac-0.1)[arguments]: Add rust-rand-core-0.3, rust-serde-1.0, rust-serde-derive-1.0 to cargo-inputs. Add rust-bincode-1.1 to cargo-development-inputs. [description]: Fill out. [properties]: Remove field.
This commit is contained in:
parent
62c240ef08
commit
3f15d290dd
1 changed files with 10 additions and 2 deletions
|
@ -9479,10 +9479,18 @@ (define-public rust-rand-isaac-0.1
|
||||||
(base32
|
(base32
|
||||||
"027flpjr4znx2csxk7gxb7vrf9c7y5mydmvg5az2afgisp4rgnfy"))))
|
"027flpjr4znx2csxk7gxb7vrf9c7y5mydmvg5az2afgisp4rgnfy"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-rand-core" ,rust-rand-core-0.3)
|
||||||
|
("rust-serde" ,rust-serde-1.0)
|
||||||
|
("rust-serde-derive" ,rust-serde-derive-1.0))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-bincode" ,rust-bincode-1.1))))
|
||||||
(home-page "https://crates.io/crates/rand_isaac")
|
(home-page "https://crates.io/crates/rand_isaac")
|
||||||
(synopsis "ISAAC random number generator")
|
(synopsis "ISAAC random number generator")
|
||||||
(description "ISAAC random number generator")
|
(description "This package implements the @code{ISAAC} and @code{ISAAC-64}
|
||||||
(properties '((hidden? . #t)))
|
random number generators. ISAAC stands for \"Indirection, Shift, Accumulate,
|
||||||
|
Add, and Count\" which are the principal bitwise operations employed.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue