guix-commits
[Top][All Lists]
Advanced

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

01/41: gnu: Add ruby-concurrent.


From: julien lepiller
Subject: 01/41: gnu: Add ruby-concurrent.
Date: Sat, 1 Sep 2018 17:10:14 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 352b5d7e746674b1dd4b8a30b05ef8ac567afa14
Author: Julien Lepiller <address@hidden>
Date:   Sun Aug 26 11:49:51 2018 +0200

    gnu: Add ruby-concurrent.
    
    * gnu/packages/ruby.scm (ruby-concurrent): New variable.
---
 gnu/packages/ruby.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 908dfd5..e0a76fe 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -193,6 +193,25 @@ a focus on simplicity and productivity.")
                (("/bin/sh") (which "sh")))
              #t)))))))
 
+(define-public ruby-concurrent
+  (package
+    (name "ruby-concurrent")
+    (version "1.0.5")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "concurrent-ruby" version))
+              (sha256
+               (base32
+                "183lszf5gx84kcpb779v6a2y0mx9sssy8dgppng1z9a505nj1qcf"))))
+    (build-system ruby-build-system)
+    (arguments `(#:tests? #f)); No rakefile
+    (home-page "https://github.com/ruby-concurrency/concurrent-ruby";)
+    (synopsis "Concurrency tools for Ruby")
+    (description "This gem provides concurrency tools for Ruby.  It provides
+a library of common thread-safe types and data-structures as well as 
abstractions
+for concurrency and communication between threads.")
+    (license license:expat)))
+
 (define-public ruby-highline
   (package
     (name "ruby-highline")



reply via email to

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