mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add ruby-rb-fsevent.
* gnu/packages/ruby.scm (ruby-rb-fsevent): New variable.
This commit is contained in:
parent
b004fb6a8a
commit
16b324cdf4
1 changed files with 22 additions and 0 deletions
|
@ -2163,6 +2163,28 @@ (define-public ruby-json-pure
|
||||||
(home-page "http://flori.github.com/json")
|
(home-page "http://flori.github.com/json")
|
||||||
(license license:ruby)))
|
(license license:ruby)))
|
||||||
|
|
||||||
|
;; Even though this package only provides bindings for a Mac OSX API it is
|
||||||
|
;; required by "ruby-listen" at runtime.
|
||||||
|
(define-public ruby-rb-fsevent
|
||||||
|
(package
|
||||||
|
(name "ruby-rb-fsevent")
|
||||||
|
(version "0.9.6")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "rb-fsevent" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1hq57by28iv0ijz8pk9ynih0xdg7vnl1010xjcijfklrcv89a1j2"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
;; Tests need "guard-rspec", which needs "guard". However, "guard" needs
|
||||||
|
;; "listen", which needs "rb-fsevent" at runtime.
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
|
(synopsis "FSEvents API with signals catching")
|
||||||
|
(description
|
||||||
|
"This library provides Ruby bindings for the Mac OSX FSEvents API.")
|
||||||
|
(home-page "https://rubygems.org/gems/rb-fsevent")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-listen
|
(define-public ruby-listen
|
||||||
(package
|
(package
|
||||||
(name "ruby-listen")
|
(name "ruby-listen")
|
||||||
|
|
Loading…
Reference in a new issue