mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: Add ruby-ffi-rzmq.
* gnu/packages/ruby.scm (ruby-ffi-rzmq): New variable.
This commit is contained in:
parent
fc5d1c5aa0
commit
7a5035162b
1 changed files with 29 additions and 0 deletions
|
@ -6089,6 +6089,35 @@ (define-public ruby-ffi-rzmq-core
|
||||||
(home-page "https://github.com/chuckremes/ffi-rzmq-core")
|
(home-page "https://github.com/chuckremes/ffi-rzmq-core")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-ffi-rzmq
|
||||||
|
(package
|
||||||
|
(name "ruby-ffi-rzmq")
|
||||||
|
(version "2.0.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "ffi-rzmq" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14a5kxfnf8l3ngyk8hgmk30z07aj1324ll8i48z67ps6pz2kpsrg"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments '(#:tests? #t
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(invoke "rspec"))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("ruby-rspec" ,ruby-rspec)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-ffi-rzmq-core" ,ruby-ffi-rzmq-core)))
|
||||||
|
(synopsis "High-level Ruby wrapper for the ZeroMQ networking library")
|
||||||
|
(description "This library provides a high-level API that wraps the ZeroMQ
|
||||||
|
networking library using the Ruby foreign function interface (FFI). It is a
|
||||||
|
pure Ruby wrapper, hence is compatible with any Ruby runtime that has support
|
||||||
|
for FFI.")
|
||||||
|
(home-page "https://github.com/chuckremes/ffi-rzmq")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-gherkin
|
(define-public ruby-gherkin
|
||||||
(package
|
(package
|
||||||
(name "ruby-gherkin")
|
(name "ruby-gherkin")
|
||||||
|
|
Loading…
Reference in a new issue