me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-input-buffer-0.3.

* gnu/packages/crates-io.scm (rust-input-buffer-0.3): New variable.
master
Nicolas Goaziou 2021-02-09 23:45:50 +01:00
parent b335b4e73a
commit 583c99def6
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -17086,6 +17086,30 @@ written in Rust.")
"This package provides inotify bindings for the Rust programming language.")
(license license:isc)))
(define-public rust-input-buffer-0.3
(package
(name "rust-input-buffer")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "input_buffer" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0m4pamqvr00z90cmrgjj25iwpqy6fyac53k1ms63k86m8d9aka0r"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bytes" ,rust-bytes-0.5))))
(home-page "https://github.com/snapview/input_buffer")
(synopsis
"Peekable FIFO-like buffer for receiving network data efficiently")
(description
"This package provides a peekable FIFO-like buffer for receiving network
data efficiently.")
(license (list license:expat license:asl2.0))))
(define-public rust-insta-0.16
(package
(name "rust-insta")