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

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

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

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index d1de23b919..9a93678eb6 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3622,6 +3622,33 @@ Go.  Designed to ease things up for fast development 
with zero memory
 allocation and performance in mind.")
     (license license:expat)))
 
+(define-public go-github-com-gogo-googleapis
+  (package
+    (name "go-github-com-gogo-googleapis")
+    (version "1.4.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/gogo/googleapis";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "094znmiswmz8d4b6k7il655gvjrwvraacln0n0lzv5kskbzhlmfi"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:tests? #f
+      #:import-path "github.com/gogo/googleapis"))
+    (propagated-inputs (list go-github-com-gogo-protobuf))
+    (home-page "https://github.com/gogo/googleapis";)
+    (synopsis "Google APIs rRPC templates")
+    (description
+     "This package provides rRPC templates used to interact with Google
+APIs.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-gogo-protobuf
   (package
     (name "go-github-com-gogo-protobuf")

Reply via email to