mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add ruby-timeout.
* gnu/packages/ruby.scm (ruby-timeout): New variable.
This commit is contained in:
parent
1d211e237d
commit
93d038c827
1 changed files with 20 additions and 0 deletions
|
@ -13518,6 +13518,26 @@ (define-public ruby-sinatra
|
||||||
(home-page "https://sinatrarb.com/")
|
(home-page "https://sinatrarb.com/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-timeout
|
||||||
|
(package
|
||||||
|
(name "ruby-timeout")
|
||||||
|
(version "0.3.2")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ruby/timeout")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0lzhs2c4znzg781w146dhvczhbx7h3wkb90i4v6h68zvm2zfylgj"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(synopsis "Timeout library for Ruby")
|
||||||
|
(description "Timeout provides a way to auto-terminate a potentially
|
||||||
|
long-running operation if it hasn't finished in a fixed amount of time.")
|
||||||
|
(home-page "https://github.com/ruby/timeout")
|
||||||
|
(license (list license:bsd-2))))
|
||||||
|
|
||||||
(define-public ruby-thin
|
(define-public ruby-thin
|
||||||
(package
|
(package
|
||||||
(name "ruby-thin")
|
(name "ruby-thin")
|
||||||
|
|
Loading…
Reference in a new issue