guix-commits
[Top][All Lists]
Advanced

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

20/22: gnu: Add rust-futures-cpupool.


From: guix-commits
Subject: 20/22: gnu: Add rust-futures-cpupool.
Date: Thu, 29 Aug 2019 08:05:59 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit cb298154b30aebf711f6d43156df683c38de4ad9
Author: Efraim Flashner <address@hidden>
Date:   Thu Aug 29 14:30:49 2019 +0300

    gnu: Add rust-futures-cpupool.
    
    * gnu/packages/crates-io.scm (rust-futures-cpupool): New variable.
---
 gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 219bbe2..ac925e3 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -593,6 +593,31 @@ featuring zero allocations, composability, and 
iterator-like interfaces.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-futures-cpupool
+  (package
+    (name "rust-futures-cpupool")
+    (version "0.1.8")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "futures-cpupool" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "1r32456gpblzfvnkf60545v8acqk7gh5zhyhi1jn669k9gicv45b"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-futures" ,rust-futures)
+        ("rust-num-cpus" ,rust-num-cpus))))
+    (home-page "https://github.com/alexcrichton/futures-rs";)
+    (synopsis "Implementation of thread pools which hand out futures")
+    (description
+     "An implementation of thread pools which hand out futures to the results 
of
+the computation on the threads themselves.")
+    (license (list license:asl2.0
+                   license:expat))))
+
 (define-public rust-futures-io-preview
   (package
     (name "rust-futures-io-preview")



reply via email to

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