guix-commits
[Top][All Lists]
Advanced

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

05/11: gnu: Add ruby-daemons.


From: David Thompson
Subject: 05/11: gnu: Add ruby-daemons.
Date: Tue, 16 Jun 2015 00:30:22 +0000

davexunit pushed a commit to branch master
in repository guix.

commit afbbdf7752c561fc3688d0f2d69977fde11d0429
Author: David Thompson <address@hidden>
Date:   Fri Jun 5 19:29:26 2015 -0400

    gnu: Add ruby-daemons.
    
    * gnu/packages/ruby.scm (ruby-daemons): New variable.
---
 gnu/packages/ruby.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 31a377b..44ca0dc 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -465,3 +465,25 @@ interface for Ruby programs.")
 using Net::HTTP, supporting reconnection and retry according to RFC 2616.")
     (home-page "https://github.com/drbrain/net-http-persistent";)
     (license license:expat)))
+
+(define-public ruby-daemons
+  (package
+    (name "ruby-daemons")
+    (version "1.2.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/thuehlinger/daemons/archive/v";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1v5bpdvpvhk240pc7fkn44vfclppl44pp6wd42ipi5sd5lkk7zfd"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #f)) ; no test suite
+    (synopsis "Daemonize Ruby programs")
+    (description "Daemons provides a way to wrap existing Ruby scripts to be
+run as a daemon and to be controlled by simple start/stop/restart commands.")
+    (home-page "https://github.com/thuehlinger/daemons";)
+    (license license:expat)))



reply via email to

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