aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--battering/packages/golang-xyz.scm40
1 files changed, 40 insertions, 0 deletions
diff --git a/battering/packages/golang-xyz.scm b/battering/packages/golang-xyz.scm
index a96f22b..fcf4c58 100644
--- a/battering/packages/golang-xyz.scm
+++ b/battering/packages/golang-xyz.scm
@@ -377,3 +377,43 @@ the detection functions in real GCP environments.")
(description "This is a GCP resource detector that supports detecting
resources on various cloud platforms.")
(license license:asl2.0)))
+
+(define-public go-google-golang-org-grpc
+ (package
+ (name "go-google-golang-org-grpc")
+ (version "1.70.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/grpc/grpc-go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1l2yldql3hi123vhvaqnzq9s5a14yyn0bqq8yk3jsmhxifdinazk"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:go go-1.23
+ #:tests? #f
+ #:import-path "google.golang.org/grpc"))
+ (propagated-inputs (list go-google-golang-org-protobuf
+ go-google-golang-org-genproto
+ go-golang-org-x-sys
+ go-golang-org-x-sync
+ go-golang-org-x-oauth2
+ go-golang-org-x-net
+ go-go-opentelemetry-io-otel-sdk
+ go-go-opentelemetry-io-otel
+ go-go-opentelemetry-io-contrib-detectors-gcp
+ go-github-com-google-uuid
+ go-github-com-google-go-cmp
+ go-github-com-golang-protobuf
+ go-github-com-golang-glog
+ go-github-com-envoyproxy-go-control-plane
+ go-github-com-cncf-xds-go
+ go-github-com-cespare-xxhash-v2))
+ (home-page "https://google.golang.org/grpc")
+ (synopsis "Golang gRPC implementation")
+ (description "This package implements an RPC system called @code{gRPC}.")
+ (license license:asl2.0)))