guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit b7c2e2cd67c9087af20d4858c29b805e90e5598f
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Wed May 28 16:00:01 2025 +0100

    gnu: Add go-github-com-gogo-status.
    
    * gnu/packages/golang-web.scm (go-github-com-gogo-status): New variable.
    
    Change-Id: I65c886fc12cfe8b9ac2fe7a2edf0313fc4351d20
---
 gnu/packages/golang-web.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 9a93678eb6..1553052eb8 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3695,6 +3695,39 @@ generation features.  This code generation is used to 
achieve:
 @end itemize")
     (license license:bsd-3)))
 
+(define-public go-github-com-gogo-status
+  (package
+    (name "go-github-com-gogo-status")
+    (version "1.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/gogo/status";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0k0j262qvq5ligiqafhq3mljzmgjcqz4n3xxv7j3di9glr8n38cz"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/gogo/status"))
+    (propagated-inputs
+     (list go-github-com-gogo-googleapis
+           go-github-com-gogo-protobuf
+           go-github-com-golang-protobuf
+           go-google-golang-org-grpc))
+    (home-page "https://github.com/gogo/status";)
+    (synopsis "Error handling for client/server rRPC-like communication")
+    (description
+     "Package status implements errors returned by @code{gRPC}.  These errors
+are serialized and transmitted on the wire between server and client, and
+allow for additional data to be transmitted via the Details field in the
+status proto.  @code{gRPC} service handlers should return an error created by
+this package, and @code{gRPC} clients should expect a corresponding error to
+be returned from the RPC call.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-golang-groupcache
   (package
     (name "go-github-com-golang-groupcache")

Reply via email to