gnu: Add rust-want-0.2.

* gnu/packages/crates-io.scm (rust-want-0.2): New variable.
This commit is contained in:
Hartmut Goebel 2020-04-20 22:03:15 +02:00
parent 25078818e9
commit 5415f9d2a0
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -25865,6 +25865,29 @@ (define-public rust-walkdir-1.0
("rust-rand" ,rust-rand-0.3)
("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
(define-public rust-want-0.2
(package
(name "rust-want")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "want" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0c52g7b4hhj033jc56sx9z3krivyciz0hlblixq2gc448zx5wfdn"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ;; 2/5 tests fail
#:cargo-inputs
(("rust-futures" ,rust-futures-0.1)
("rust-log" ,rust-log-0.4)
("rust-try-lock" ,rust-try-lock-0.2))))
(home-page "https://github.com/seanmonstar/want")
(synopsis "Detect when another Future wants a result")
(description "Detect when another Future wants a result.")
(license license:expat)))
(define-public rust-wasi-0.9
(package
(name "rust-wasi")