mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-bufstream-0.1.
* gnu/packages/crates-io.scm (rust-bufstream-0.1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
221d7579fa
commit
a66fb6d8f7
1 changed files with 25 additions and 0 deletions
|
@ -6137,6 +6137,31 @@ (define-public rust-buffered-reader-0.9
|
|||
with data in place, which avoids another copy.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public rust-bufstream-0.1
|
||||
(package
|
||||
(name "rust-bufstream")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bufstream" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1j7f52rv73hd1crzrrfb9dr50ccmi3hb1ybd6s5dyg6jmllqkqs0"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-futures" ,rust-futures-0.1)
|
||||
("rust-tokio-io" ,rust-tokio-io-0.1))))
|
||||
(home-page "https://github.com/alexcrichton/bufstream")
|
||||
(synopsis "I/O streams with separate read/write buffers")
|
||||
(description
|
||||
"This package provides buffered I/O for streams where each read/write
|
||||
half is separately buffered.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-bugreport-0.4
|
||||
(package
|
||||
(name "rust-bugreport")
|
||||
|
|
Loading…
Reference in a new issue