Skip to content
Snippets Groups Projects
Commit afbbdf77 authored by David Thompson's avatar David Thompson
Browse files

gnu: Add ruby-daemons.

* gnu/packages/ruby.scm (ruby-daemons): New variable.
parent 4c0aeb44
No related branches found
No related tags found
No related merge requests found
...@@ -465,3 +465,25 @@ (define-public ruby-net-http-persistent ...@@ -465,3 +465,25 @@ (define-public ruby-net-http-persistent
using Net::HTTP, supporting reconnection and retry according to RFC 2616.") using Net::HTTP, supporting reconnection and retry according to RFC 2616.")
(home-page "https://github.com/drbrain/net-http-persistent") (home-page "https://github.com/drbrain/net-http-persistent")
(license license:expat))) (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)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment