gnu: go-github-com-golang-protobuf: Move to golang-build.

* gnu/packages/golang.scm (go-github-com-golang-protobuf): Move from
here ...
* gnu/packages/golang-build.scm: ... to here.

Change-Id: I1682e199e6acd6b8362deff47fa7a26cbfe9c9ea
This commit is contained in:
Sharlatan Hellseher 2024-07-21 12:52:32 +01:00
parent 3750e11a8d
commit d43795cd20
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 37 additions and 35 deletions

View file

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018, 2019, 2020 Leo Famulari <leo@famulari.name>
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
;;; Copyright © 2020 HiPhish <hiphish@posteo.de>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
@ -58,6 +58,42 @@ (define-module (gnu packages golang-build)
;;;
;;; Code:
(define-public go-github-com-golang-protobuf
(package
(name "go-github-com-golang-protobuf")
(version "1.5.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/golang/protobuf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "03f1w2cd4s8a3xhl61x7yjx81kbzlrjpvnnwmbhqnz814yi7h43i"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/golang/protobuf"
#:phases
#~(modify-phases %standard-phases
;; XXX: Workaround for go-build-system's lack of Go modules
;; support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(propagated-inputs
(list go-google-golang-org-protobuf))
(home-page "https://github.com/golang/protobuf")
(synopsis "Go support for Protocol Buffers")
(description
"This package provides Go support for the Protocol Buffers data
serialization format.")
(license license:bsd-3)))
(define-public go-github-com-google-go-cmp
(package
(name "go-github-com-google-go-cmp")

View file

@ -6166,40 +6166,6 @@ (define-public gotestsum
(home-page "https://github.com/gotestyourself/gotestsum")
(license license:asl2.0)))
(define-public go-github-com-golang-protobuf
(package
(name "go-github-com-golang-protobuf")
(version "1.5.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/golang/protobuf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"03f1w2cd4s8a3xhl61x7yjx81kbzlrjpvnnwmbhqnz814yi7h43i"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/golang/protobuf"
#:phases
#~(modify-phases %standard-phases
;; XXX: Workaround for go-build-system's lack of Go modules
;; support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(propagated-inputs
(list go-google-golang-org-protobuf))
(synopsis "Go support for Protocol Buffers")
(description "This package provides Go support for the Protocol Buffers
data serialization format.")
(home-page "https://github.com/golang/protobuf")
(license license:bsd-3)))
(define-public go-github-com-macronut-go-tproxy
(package
(name "go-github-com-macronut-go-tproxy")