guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/20: gnu: Add rust-dispatch-0.1.


From: guix-commits
Subject: 06/20: gnu: Add rust-dispatch-0.1.
Date: Wed, 12 Feb 2020 15:22:54 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit a09dad21f354f15b83c189175b68c38cb7287fd0
Author: Valentin Ignatev <address@hidden>
AuthorDate: Wed Jan 15 04:09:21 2020 +0300

    gnu: Add rust-dispatch-0.1.
    
    * gnu/packages/crates-io.scm (rust-dispatch-0.1): New variable.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 0486f14..1db1b61 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2929,6 +2929,27 @@ memory but not other memory.  This package provides a 
discard trait which allows
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]