mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 02:03:29 -05:00
gnu: Add rust-buffering-0.4.
* gnu/packages/crates-io.scm (rust-buffering-0.4): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
6823129abf
commit
a8df6cc308
1 changed files with 26 additions and 8 deletions
|
@ -6231,8 +6231,33 @@ (define-public rust-buffered-reader-0.9
|
|||
with data in place, which avoids another copy.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public rust-buffering-0.4
|
||||
(package
|
||||
(name "rust-buffering")
|
||||
(version "0.4.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "buffering" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1wmgy84j5scbndzx7mccz07z34n98fwnfah1zd5kzqjaif5iqk76"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-buffering-nocopy-macro" ,rust-buffering-nocopy-macro-0.2))))
|
||||
(home-page "https://github.com/jbaublitz/buffering")
|
||||
(synopsis "Library primarily designed for network packet buffer operations")
|
||||
(description
|
||||
"This package provides a library primarily designed for network packet
|
||||
buffer operations.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-buffering-0.3
|
||||
(package
|
||||
(inherit rust-buffering-0.4)
|
||||
(name "rust-buffering")
|
||||
(version "0.3.4")
|
||||
(source
|
||||
|
@ -6243,17 +6268,10 @@ (define-public rust-buffering-0.3
|
|||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "11cyq2nm569j028g93jxk00h8nfwc3l6n3hqw79w34na01p3lq97"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-buffering-nocopy-macro" ,rust-buffering-nocopy-macro-0.1))))
|
||||
(home-page "https://github.com/jbaublitz/buffering")
|
||||
(synopsis "Library primarily designed for network packet buffer operations")
|
||||
(description
|
||||
"This package provides a library primarily designed for network packet
|
||||
buffer operations.")
|
||||
(license license:bsd-3)))
|
||||
(("rust-buffering-nocopy-macro" ,rust-buffering-nocopy-macro-0.1))))))
|
||||
|
||||
(define-public rust-buffering-nocopy-macro-0.2
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue