diff options
author | Christopher Baines <mail@cbaines.net> | 2018-04-14 19:09:08 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-28 18:11:11 +0000 |
commit | f7880cbc4e05bcc2dc18418c7d6d7b1c6dd78924 (patch) | |
tree | 9f70744a6933ab8acac3397709bd94a951230702 | |
parent | 8d94fe0aef5a04a076b0215c737d6d97a4271c83 (diff) | |
download | guix-f7880cbc4e05bcc2dc18418c7d6d7b1c6dd78924.tar guix-f7880cbc4e05bcc2dc18418c7d6d7b1c6dd78924.tar.gz |
gnu: Add ruby-kgio.
-rw-r--r-- | gnu/packages/ruby.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0430a2a600..daf5b9eab5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9586,3 +9586,30 @@ way.") "Restarts your app when a file changes. A no-frills, command-line alternative to Guard, Shotgun, Autotest, etc.") (home-page "http://github.com/alexch/rerun/") (license license:expat))) + +(define-public ruby-kgio + (package + (name "ruby-kgio") + (version "2.11.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "kgio" version)) + (sha256 + (base32 + "1528pyj1szzzp3pgj05fzjd36qjrxm9yj2x5radc9p1z7vl67y50")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (synopsis + "This is a legacy project, do not use it for new projects. Ruby +2.3 and later should make this obsolete. kgio provides +non-blocking I/O methods for Ruby without raising exceptions on +EAGAIN and EINPROGRESS.") + (description + "This is a legacy project, do not use it for new projects. Ruby +2.3 and later should make this obsolete. kgio provides +non-blocking I/O methods for Ruby without raising exceptions on +EAGAIN and EINPROGRESS.") + (home-page "https://bogomips.org/kgio/") + (license #f))) |