diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 00:10:32 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 17:47:17 +0100 |
commit | 72e94a3dd8897eb4956ac1ec937b2c048602da7b (patch) | |
tree | 1373c592b3b7e7c5c2fe3fb86301d3c2e1c45cff | |
parent | 10effff61d35590b0f8a98f48150fe21e4524a7b (diff) |
battering: Add go-google-golang-org-grpc.
* battering/packages/golang-xyz.scm (go-google-golang-org-grpc): New variable.
-rw-r--r-- | battering/packages/golang-xyz.scm | 40 |
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))) |