gnu: Add rust-dispatch-0.1.

* gnu/packages/crates-io.scm (rust-dispatch-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Valentin Ignatev 2020-01-15 04:09:21 +03:00 committed by Efraim Flashner
parent f193fdea53
commit a09dad21f3
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2929,6 +2929,27 @@ (define-public rust-discard-1.0
for intentionally leaking memory")
(license license:expat)))
(define-public rust-dispatch-0.1
(package
(name "rust-dispatch")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "dispatch" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"019nzy993hxaiazcdnayx3csv2iki34i535asw11ki96hakkrs84"))))
(build-system cargo-build-system)
(arguments '(#:tests? #f)) ; Tests only run on Mac.
(home-page "http://github.com/SSheldon/rust-dispatch")
(synopsis "Rust wrapper for Apple's Grand Central Dispatch")
(description "This package provides a Rust wrapper for Apple's Grand
Central Dispatch.")
(license license:expat)))
(define-public rust-doc-comment-0.3
(package
(name "rust-doc-comment")