mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add rust-crossbeam-queue-0.1.
* gnu/packages/crates-io.scm (rust-crossbeam-queue-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
622615106a
commit
3a1a844255
1 changed files with 28 additions and 0 deletions
|
@ -933,6 +933,34 @@ (define-public rust-crossbeam-epoch-0.7
|
|||
(description "Epoch-based garbage collection.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-crossbeam-queue-0.1
|
||||
(package
|
||||
(name "rust-crossbeam-queue")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "crossbeam-queue" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jsa9dbxnwqcxfws09vaschf92d4imlbbikmcn4ka8z7rzb9r5vw"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))
|
||||
#:cargo-development-inputs
|
||||
(("rust-rand" ,rust-rand-0.4))))
|
||||
(home-page
|
||||
"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils")
|
||||
(synopsis "Concurrent queues")
|
||||
(description "Concurrent queues.")
|
||||
(license (list license:expat
|
||||
license:asl2.0
|
||||
license:bsd-2))))
|
||||
|
||||
(define-public rust-crossbeam-utils-0.6
|
||||
(package
|
||||
(name "rust-crossbeam-utils")
|
||||
|
|
Loading…
Reference in a new issue