diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 12:03:13 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 22:16:32 +0000 |
commit | b3134329ac5e6c450ad0b499d0fe9d65d59d3eaa (patch) | |
tree | d4ccbfd480f01e8e25429c50719c9c2b8821a9b6 /gnu/packages | |
parent | d9d1dcb42613b9128b197b3a332b6f6a75361d9d (diff) | |
download | guix-b3134329ac5e6c450ad0b499d0fe9d65d59d3eaa.tar guix-b3134329ac5e6c450ad0b499d0fe9d65d59d3eaa.tar.gz |
gnu: Add ruby-rb-inotify.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ruby.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 55596ebdaa..5bc8b2ac9f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7606,3 +7606,25 @@ https://github.com/flavorjones/loofah-activerecord).") "Creates a version constraint of supported Rubies,suitable for a gemspec file") (home-page "https://github.com/e2/ruby_dep") (license license:expat))) + +(define-public ruby-rb-inotify +(package + (name "ruby-rb-inotify") + (version "0.9.7") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rb-inotify" version)) + (sha256 + (base32 + "1yfcp3065n08balljmxn0qzwhdbwwxn2h9z89wmydyfj2gq1p71d")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ; Tests are not included in the gem. + (propagated-inputs `(("ruby-ffi" ,ruby-ffi))) + (synopsis + "A Ruby wrapper for Linux's inotify, using FFI") + (description + "This package provides a Ruby wrapper for Linux's inotify, using FFI") + (home-page "http://github.com/nex3/rb-inotify") + (license #f))) |