From ffe5c2a6e2782e329c9cdb191ee16ef7858d7e08 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 12 Feb 2026 23:52:11 +0000 Subject: [PATCH] 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 --- gnu/packages/golang-web.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 641f1170bb..ddc10b3f7d 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -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")