mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-17 08:27:47 -05:00
gnu: Add rust-rayon-core-1.5.
* gnu/packages/crates-io.scm (rust-rayon-core-1.5): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
cbdde03509
commit
75076f6cb3
1 changed files with 32 additions and 0 deletions
|
@ -4558,6 +4558,38 @@ (define-public rust-rawpointer-0.1
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-rayon-core-1.5
|
||||||
|
(package
|
||||||
|
(name "rust-rayon-core")
|
||||||
|
(version "1.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "rayon-core" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ljva6blaf1wmzvg77h1i9pd0hsmsbbcmdk7sjbw7h2s8gw0vgpb"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
|
||||||
|
("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
|
||||||
|
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
|
||||||
|
("rust-lazy-static" ,rust-lazy-static-1.3)
|
||||||
|
("rust-num-cpus" ,rust-num-cpus-1.10))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-rand" ,rust-rand-0.4)
|
||||||
|
("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
|
||||||
|
("rust-scoped-tls" ,rust-scoped-tls-1.0))))
|
||||||
|
(home-page "https://github.com/rayon-rs/rayon")
|
||||||
|
(synopsis "Core APIs for Rayon")
|
||||||
|
(description "Core APIs for Rayon.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-rdrand-0.4
|
(define-public rust-rdrand-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-rdrand")
|
(name "rust-rdrand")
|
||||||
|
|
Loading…
Reference in a new issue