diff options
-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))) |