From efeb47c83b3b7ce1f03fda581c1c8a8e5c132e6b Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 14 Apr 2018 19:09:08 +0100 Subject: gnu: Add ruby-kgio. --- gnu/packages/ruby.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 5ac187c324..b3edf008bf 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8519,3 +8519,30 @@ but it can function as a stand-alone templating engine.") "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))) -- cgit v1.2.3