mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: Add rust-rand-core-0.6.
* gnu/packages/crates-io.scm (rust-rand-core-0.6): New variable. (rust-rand-core-0.5): Inherit from above.
This commit is contained in:
parent
b7b7f9505f
commit
2f3206f00e
1 changed files with 26 additions and 8 deletions
|
@ -26436,8 +26436,33 @@ (define-public rust-rand-chacha-0.1
|
|||
#:cargo-development-inputs
|
||||
(("rust-autocfg" ,rust-autocfg-0.1))))))
|
||||
|
||||
(define-public rust-rand-core-0.6
|
||||
(package
|
||||
(name "rust-rand-core")
|
||||
(version "0.6.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rand_core" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1rfjrcyaj7blz2nawv2pypm5kqc59p80n6f5pg691399iggxf9n0"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-getrandom" ,rust-getrandom-0.2)
|
||||
("rust-serde" ,rust-serde-1))))
|
||||
(home-page "https://rust-random.github.io/book")
|
||||
(synopsis "Core random number generator traits and tools")
|
||||
(description
|
||||
"This package provides core random number generator traits and
|
||||
tools for implementation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rand-core-0.5
|
||||
(package
|
||||
(inherit rust-rand-core-0.6)
|
||||
(name "rust-rand-core")
|
||||
(version "0.5.1")
|
||||
(source
|
||||
|
@ -26449,17 +26474,10 @@ (define-public rust-rand-core-0.5
|
|||
(sha256
|
||||
(base32
|
||||
"06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-getrandom" ,rust-getrandom-0.1)
|
||||
("rust-serde" ,rust-serde-1))))
|
||||
(home-page "https://crates.io/crates/rand-core")
|
||||
(synopsis
|
||||
"Core random number generator traits and tools for implementation")
|
||||
(description
|
||||
"Core random number generator traits and tools for implementation.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-serde" ,rust-serde-1))))))
|
||||
|
||||
(define-public rust-rand-core-0.4
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue