gnu: Add rust-iovec.

* gnu/packages/crates-io.scm (rust-iovec): New variable.
master
Efraim Flashner 2019-08-28 15:59:03 +03:00
parent c4b7a9abb6
commit 33d93a0aec
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -518,6 +518,30 @@ hexadecimal representation.")
(license (list license:asl2.0
license:expat))))
(define-public rust-iovec
(package
(name "rust-iovec")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "iovec" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"025vi072m22299z3fg73qid188z2iip7k41ba6v5v5yhwwby9rnv"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-libc" ,rust-libc)
("rust-winapi" ,rust-winapi-0.2))))
(home-page "https://github.com/carllerche/iovec")
(synopsis "Portable buffer type for scatter/gather I/O operations")
(description
"Portable buffer type for scatter/gather I/O operations.")
(license (list license:asl2.0
license:expat))))
(define-public rust-itoa
(package
(name "rust-itoa")