mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-want-0.2.
* gnu/packages/crates-io.scm (rust-want-0.2): New variable.
This commit is contained in:
parent
25078818e9
commit
5415f9d2a0
1 changed files with 23 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue