mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add rust-concurrent-queue-1.
* gnu/packages/crates-io.scm (rust-concurrent-queue-1): New variable.
This commit is contained in:
parent
28ba48959c
commit
316e4ab678
1 changed files with 25 additions and 0 deletions
|
@ -4928,6 +4928,31 @@ (define-public rust-compiletest-rs-0.2
|
|||
("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
|
||||
("rust-tempdir" ,rust-tempdir-0.3))))))
|
||||
|
||||
(define-public rust-concurrent-queue-1
|
||||
(package
|
||||
(name "rust-concurrent-queue")
|
||||
(version "1.2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "concurrent-queue" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "18w6hblcjjk9d0my3657ra1zdj79gwfjmzvc0b3985g01dahgv9h"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cache-padded" ,rust-cache-padded-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-easy-parallel" ,rust-easy-parallel-3)
|
||||
("rust-fastrand" ,rust-fastrand-1))))
|
||||
(home-page "https://github.com/stjepang/concurrent-queue")
|
||||
(synopsis "Concurrent multi-producer multi-consumer queue")
|
||||
(description
|
||||
"This package provides a concurrent multi-producer multi-consumer
|
||||
queue.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-console-0.13
|
||||
(package
|
||||
(name "rust-console")
|
||||
|
|
Loading…
Reference in a new issue