guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 87f5ea436d389fddc2affeec5a4d43fab571b7ca
Author: Sharlatan Hellseher <[email protected]>
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 6189c34115..4c4820bc61 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3864,6 +3864,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")