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

commit 1dbc3cae7af11584d79a9c6b67790114fb830d2f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Mar 8 08:41:36 2026 +0000

    gnu: go-github-com-matttproud-golang-protobuf-extensions-v2: Move to 
golang-build.
    
    * gnu/packages/golang-xyz.scm
    (go-github-com-matttproud-golang-protobuf-extensions-v2): Move from
    here ...
    * gnu/packages/golang-build.scm: ... to here.
    
    Change-Id: I75a43cdc2a357f8dabc41831074c0138ea944f7e
---
 gnu/packages/golang-build.scm | 32 ++++++++++++++++++++++++++++++++
 gnu/packages/golang-xyz.scm   | 32 --------------------------------
 2 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index b0f956b15c..7069c095c0 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -520,6 +520,38 @@ language (golang), namely support for record 
length-delimited message
 streaming.")
     (license license:asl2.0)))
 
+(define-public go-github-com-matttproud-golang-protobuf-extensions-v2
+  (package
+    (name "go-github-com-matttproud-golang-protobuf-extensions-v2")
+    (version "2.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/matttproud/golang_protobuf_extensions";)
+         (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0jw4vjycwx0a82yvixmp25805krdyqd960y8lnyggllb6br0vh41"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/matttproud/golang_protobuf_extensions/v2"
+      #:skip-build? #t))
+    (native-inputs
+     (list go-github-com-google-go-cmp))
+    (propagated-inputs
+     (list go-github-com-golang-protobuf
+           go-google-golang-org-protobuf))
+    (home-page "https://github.com/matttproud/golang_protobuf_extensions";)
+    (synopsis "Streaming Protocol Buffers in Go")
+    (description
+     "This package provides various Protocol Buffer extensions for the Go
+language, namely support for record length-delimited message streaming.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-mmcloughlin-avo
   (package
     (name "go-github-com-mmcloughlin-avo")
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0a6fad1476..6e1bc9c149 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17632,38 +17632,6 @@ operation systems.")
 other directories.  It is optimized for filewalking.")
     (license license:expat)))
 
-(define-public go-github-com-matttproud-golang-protobuf-extensions-v2
-  (package
-    (name "go-github-com-matttproud-golang-protobuf-extensions-v2")
-    (version "2.0.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri
-        (git-reference
-         (url "https://github.com/matttproud/golang_protobuf_extensions";)
-         (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "0jw4vjycwx0a82yvixmp25805krdyqd960y8lnyggllb6br0vh41"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:import-path "github.com/matttproud/golang_protobuf_extensions/v2"
-      #:skip-build? #t))
-    (native-inputs
-     (list go-github-com-google-go-cmp))
-    (propagated-inputs
-     (list go-github-com-golang-protobuf
-           go-google-golang-org-protobuf))
-    (home-page "https://github.com/matttproud/golang_protobuf_extensions";)
-    (synopsis "Streaming Protocol Buffers in Go")
-    (description
-     "This package provides various Protocol Buffer extensions for the Go
-language, namely support for record length-delimited message streaming.")
-    (license license:asl2.0)))
-
 (define-public go-github-com-max-sum-base32768
   (package
     (name "go-github-com-max-sum-base32768")

Reply via email to