diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-08 08:41:36 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 14:07:32 +0100 |
| commit | 39f6eefb7ccec9e1375814971ded09b3021801d0 (patch) | |
| tree | 0025ffb4f0d1babfad2824a96cd090356c85810d | |
| parent | 9cfcaf82649b4adc5b95919a5480e158a7ae818c (diff) | |
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
| -rw-r--r-- | gnu/packages/golang-build.scm | 32 | ||||
| -rw-r--r-- | 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 b0f956b15c2..7069c095c01 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 0a6fad14760..6e1bc9c149f 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") |
