mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add rust-broadcaster-0.2.
* gnu/packages/crates-io.scm (rust-broadcaster-0.2): New variable.
This commit is contained in:
parent
0f3d491733
commit
5b4695f729
1 changed files with 29 additions and 0 deletions
|
@ -2877,6 +2877,35 @@ (define-public rust-bresenham-0.1
|
||||||
Bresenham's line algorithm.")
|
Bresenham's line algorithm.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-broadcaster-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-broadcaster")
|
||||||
|
(version "0.2.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "broadcaster" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1848lwapy955rs8kbiv87adj68vdlh6vlj8n4wq10vx541j49887"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
|
||||||
|
("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
|
||||||
|
("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
|
||||||
|
("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
|
||||||
|
("rust-parking-lot" ,rust-parking-lot-0.9)
|
||||||
|
("rust-slab" ,rust-slab-0.4))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-futures-executor-preview" ,rust-futures-executor-preview-0.3))))
|
||||||
|
(home-page "https://github.com/leo60228/broadcaster")
|
||||||
|
(synopsis "Broadcasting futures mpmc channel")
|
||||||
|
(description
|
||||||
|
"This package provides a wrapper for any Stream and Sink implementing the
|
||||||
|
@code{mpsc} pattern to enable broadcasting items.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-brotli-3
|
(define-public rust-brotli-3
|
||||||
(package
|
(package
|
||||||
(name "rust-brotli")
|
(name "rust-brotli")
|
||||||
|
|
Loading…
Reference in a new issue