1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-tmc-grpc-websocket-proxy.

* gnu/packages/golang-web.scm (go-github-com-tmc-grpc-websocket-proxy): New variable.

Change-Id: I6a075c4fd3bca1e2404ec55c8f93504be58a464d
This commit is contained in:
Sharlatan Hellseher
2026-02-12 23:52:11 +00:00
committed by Andreas Enge
parent 858c9748d6
commit ffe5c2a6e2

View File

@@ -15085,6 +15085,35 @@ AWS SDK.")
(list go-github-com-aws-aws-sdk-go
go-github-com-jpillora-backoff)))))
(define-public go-github-com-tmc-grpc-websocket-proxy
(package
(name "go-github-com-tmc-grpc-websocket-proxy")
(version "0.0.0-20220101234140-673ab2c3ae75")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tmc/grpc-websocket-proxy")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0299q3njcs6smrac6734xfjslpvwvsc8jyh5fq5849cdlp5a8290"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "github.com/tmc/grpc-websocket-proxy"))
(propagated-inputs
(list go-github-com-gorilla-websocket
go-github-com-sirupsen-logrus
go-golang-org-x-net))
(home-page "https://github.com/tmc/grpc-websocket-proxy")
(synopsis "Grpc-gateway websockets proxy")
(description
"This package implements a websocket proxy for grpc-gateway backed
services.")
(license license:expat)))
(define-public go-github-com-tomasen-realip
(package
(name "go-github-com-tomasen-realip")