gnu: Add rust-miow.

* gnu/packages/crates-io.scm (rust-miow): New variable.
master
Efraim Flashner 2019-09-05 19:00:51 +03:00
parent 1241007f16
commit 5ae8c1fba3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -1529,6 +1529,33 @@ streaming API for miniz_oxide.")
(license (list license:asl2.0
license:expat))))
(define-public rust-miow
(package
(name "rust-miow")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "miow" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"09ljvx6wg30f2xlv7b7hhpkw7k312n3hjgmrbhwzhz9x03ra0sir"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-socket2" ,rust-socket2)
("rust-winapi" ,rust-winapi))
#:cargo-development-inputs
(("rust-rand" ,rust-rand))))
(home-page "https://github.com/alexcrichton/miow")
(synopsis "Rust I/O library for Windows")
(description
"This package provides a zero overhead I/O library for Windows, focusing on
IOCP and Async I/O abstractions.")
(license (list license:asl2.0
license:expat))))
(define-public rust-modifier
(package
(name "rust-modifier")