mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: Add rust-rand-hc-0.3.
* gnu/packages/crates-io.scm (rust-rand-hc-0.3): New variable. (rust-rand-hc-0.2): Inherit from above.
This commit is contained in:
parent
f71c71c73a
commit
b7b7f9505f
1 changed files with 25 additions and 8 deletions
|
@ -26542,8 +26542,32 @@ (define-public rust-rand-distr-0.2
|
|||
"Sampling from random number distributions.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rand-hc-0.3
|
||||
(package
|
||||
(name "rust-rand-hc")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_hc" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0wra6ar22zdjkry9dsq1mg620m4h3qb9s8rfykkz4im4crqfz41i"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-rand-core" ,rust-rand-core-0.6))))
|
||||
(home-page "https://crates.io/crates/rand_hc")
|
||||
(synopsis "HC128 random number generator")
|
||||
(description "This package provides a cryptographically secure random number
|
||||
generator that uses the HC-128 algorithm.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rand-hc-0.2
|
||||
(package
|
||||
(inherit rust-rand-hc-0.3)
|
||||
(name "rust-rand-hc")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
|
@ -26554,16 +26578,9 @@ (define-public rust-rand-hc-0.2
|
|||
(sha256
|
||||
(base32
|
||||
"0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-rand-hc" ,rust-rand-core-0.5))))
|
||||
(home-page "https://crates.io/crates/rand_hc")
|
||||
(synopsis "HC128 random number generator")
|
||||
(description "This package provides a cryptographically secure random number
|
||||
generator that uses the HC-128 algorithm.")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
(("rust-rand-hc" ,rust-rand-core-0.5))))))
|
||||
|
||||
(define-public rust-rand-hc-0.1
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue