mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add go-github-com-gobwas-ws.
* gnu/packages/golang-web.scm (go-github-com-gobwas-ws): New variable. Change-Id: Ifc0d14ec23caf97fd71903e8e567de7485a72f7e
This commit is contained in:
parent
fa322b262d
commit
423d6f0ab7
1 changed files with 28 additions and 0 deletions
|
@ -2581,6 +2581,34 @@ (define-public go-github-com-gobwas-httphead
|
|||
compatible text protocols headers.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-gobwas-ws
|
||||
(package
|
||||
(name "go-github-com-gobwas-ws")
|
||||
(version "1.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/gobwas/ws")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1nqgb75cizx11igwjqx6b6mlzl7yxy6x683m9aaalgcx9n1qxan7"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/gobwas/ws"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-gobwas-httphead
|
||||
go-github-com-gobwas-pool))
|
||||
(home-page "https://github.com/gobwas/ws")
|
||||
(synopsis "Tiny WebSocket library for Golang")
|
||||
(description
|
||||
"Package ws implements a client and server for the @code{WebSocket}
|
||||
protocol as specified in @url{https://rfc-editor.org/rfc/rfc6455.html, RFC
|
||||
6455}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-goccy-go-json
|
||||
(package
|
||||
(name "go-github-com-goccy-go-json")
|
||||
|
|
Loading…
Reference in a new issue