me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-want-0.3.

* gnu/packages/crates-io.scm (rust-want-0.3): New variable.
master
Arun Isaac 2020-09-20 13:07:31 +05:30
parent f39b066083
commit 650c0b76d4
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 26 additions and 0 deletions

View File

@ -30043,6 +30043,32 @@ specified across Unix and Windows platforms.")
("rust-rand" ,rust-rand-0.3)
("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
(define-public rust-want-0.3
(package
(name "rust-want")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "want" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"181b2zmwfq389x9n2g1n37cvcvvdand832zz6v8i1l8wrdlaks0w"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-log" ,rust-log-0.4)
("rust-try-lock" ,rust-try-lock-0.2))
#:cargo-development-inputs
(("rust-tokio-executor" ,rust-tokio-executor-0.2)
("rust-tokio-sync" ,rust-tokio-sync-0.2))))
(home-page "https://github.com/seanmonstar/want")
(synopsis "Detect when another future wants a result")
(description "This package lets you detect when another future wants a
result.")
(license license:expat)))
(define-public rust-want-0.2
(package
(name "rust-want")