diff options
author | Christopher Baines <mail@cbaines.net> | 2018-02-05 11:16:12 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-28 18:11:09 +0000 |
commit | 97e687f4ad5672f2fd704a327b0fe0a5fcaab2f8 (patch) | |
tree | 14856eb104e7df7914b83ba1c1d953bef0d3b34b | |
parent | 086fc2639bcf1504e0a65d2344bd4d91fac8b5ec (diff) | |
download | guix-97e687f4ad5672f2fd704a327b0fe0a5fcaab2f8.tar guix-97e687f4ad5672f2fd704a327b0fe0a5fcaab2f8.tar.gz |
gnu: Add ruby-open4.
-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 b3c8d48798..3afe766a28 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9212,3 +9212,24 @@ way.") (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))) |