diff options
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 59ba1fa3b2..547759e237 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8604,3 +8604,24 @@ but it can function as a stand-alone templating engine.") (home-page "http://github.com/brianmario/bzip2-ruby") (license #f)))) + +(define-public ruby-open4 + (package + (name "ruby-open4") + (version "1.3.4") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "open4" version)) + (sha256 + (base32 + "1cgls3f9dlrpil846q0w7h66vsc33jqn84nql4gcqkk221rh7px1")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (synopsis + "open child process with handles on pid, stdin, stdout, and stderr: manage child processes and their io handles easily.") + (description + "open child process with handles on pid, stdin, stdout, and stderr: manage child processes and their io handles easily.") + (home-page "https://github.com/ahoward/open4") + (license #f))) |