guix-commits
[Top][All Lists]
Advanced

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

05/23: gnu: Add ruby-que.


From: guix-commits
Subject: 05/23: gnu: Add ruby-que.
Date: Mon, 4 Mar 2019 15:33:33 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit dbbe88d383d6f17084e3ff5b4ffd82b18654a8be
Author: Christopher Baines <address@hidden>
Date:   Sun Feb 17 17:10:44 2019 +0000

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5cf0cf0..847f499 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6114,6 +6114,27 @@ requirement specifications systems like Cucumber.")
     (home-page "https://rubyworks.github.io/qed";)
     (license license:bsd-2)))
 
+(define-public ruby-que
+  (package
+    (name "ruby-que")
+    (version "1.0.0.beta3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "que" version))
+       (sha256
+        (base32
+         "0gr9pb814d4qj3ds98g6cjrdk7wv0yg8aqbm7c1lmgl87jkg8q04"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; No included tests
+    (synopsis "Job queue using PostgreSQL written in Ruby")
+    (description
+     "This package provides a job queue that uses PostgreSQL for storing jobs
+and locking between worker processes.")
+    (home-page "https://github.com/chanks/que";)
+    (license license:expat)))
+
 (define-public ruby-ae
   (package
     (name "ruby-ae")



reply via email to

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