mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add ruby-websocket-driver.
* gnu/packages/ruby.scm (ruby-websocket-driver): New variable.
This commit is contained in:
parent
52b015a93c
commit
a229acffb7
1 changed files with 24 additions and 0 deletions
|
@ -5512,6 +5512,30 @@ (define-public ruby_version
|
|||
(home-page "https://github.com/janlelis/ruby_version")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-websocket-driver
|
||||
(package
|
||||
(name "ruby-websocket-driver")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "websocket-driver" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1551k3fs3kkb3ghqfj3n5lps0ikb9pyrdnzmvgfdxy8574n4g1dn"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(;; No included tests
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
`(("ruby-websocket-extensions" ,ruby-websocket-extensions)))
|
||||
(synopsis "WebSocket protocol handler with pluggable I/O")
|
||||
(description
|
||||
"@code{websocket-driver} provides a complete implementation of the
|
||||
WebSocket protocols that can be hooked up to any TCP library")
|
||||
(home-page "https://github.com/faye/websocket-driver-ruby")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-websocket-extensions
|
||||
(package
|
||||
(name "ruby-websocket-extensions")
|
||||
|
|
Loading…
Reference in a new issue