mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-gogo-protobuf: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-gogo-protobuf): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I5b923e2b8ffc07fef3de8642f93873845c0aa8fd
This commit is contained in:
parent
90387a762a
commit
b4e44395eb
2 changed files with 46 additions and 45 deletions
|
@ -2471,6 +2471,52 @@ from CloudFlare's github.com/cloudflare/cfssl/revoke.")
|
||||||
"Fast JSON encoder/decoder compatible with encoding/json for Go.")
|
"Fast JSON encoder/decoder compatible with encoding/json for Go.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-gogo-protobuf
|
||||||
|
(package
|
||||||
|
(name "go-github-com-gogo-protobuf")
|
||||||
|
(version "1.3.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/gogo/protobuf")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:skip-build? #t
|
||||||
|
#:import-path "github.com/gogo/protobuf"
|
||||||
|
;; protoc: exec: "protoc-min-version": executable file not found in $PATH
|
||||||
|
;; err = exec: "protoc": executable file not found in $PATH:
|
||||||
|
#:test-flags
|
||||||
|
#~(list "-skip"
|
||||||
|
(string-join
|
||||||
|
(list "TestDashFilename"
|
||||||
|
"TestEmbedMarshaler"
|
||||||
|
"TestGolden"
|
||||||
|
"TestParameters"
|
||||||
|
"TestPopulateWarning"
|
||||||
|
"TestRepeatedEmbed"
|
||||||
|
"TestStdTypesGoString"
|
||||||
|
"TestTakesTooLongToDebug")
|
||||||
|
"|"))))
|
||||||
|
(home-page "https://github.com/gogo/protobuf")
|
||||||
|
(synopsis "Protocol Buffers for Go with Gadgets")
|
||||||
|
(description "Gogoprotobuf is a fork of golang/protobuf with extra code
|
||||||
|
generation features. This code generation is used to achieve:
|
||||||
|
@itemize
|
||||||
|
@item fast marshalling and unmarshalling
|
||||||
|
@item more canonical Go structures
|
||||||
|
@item goprotobuf compatibility
|
||||||
|
@item less typing by optionally generating extra helper code
|
||||||
|
@item peace of mind by optionally generating test and benchmark code
|
||||||
|
@item other serialization formats
|
||||||
|
@end itemize")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-golang-groupcache
|
(define-public go-github-com-golang-groupcache
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-golang-groupcache")
|
(name "go-github-com-golang-groupcache")
|
||||||
|
|
|
@ -3589,51 +3589,6 @@ and lookup requests. Browse requests are not supported yet.")
|
||||||
(description "Go wrapper for taglib")
|
(description "Go wrapper for taglib")
|
||||||
(license license:unlicense))))
|
(license license:unlicense))))
|
||||||
|
|
||||||
(define-public go-github-com-gogo-protobuf
|
|
||||||
(package
|
|
||||||
(name "go-github-com-gogo-protobuf")
|
|
||||||
(version "1.3.2")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/gogo/protobuf")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:skip-build? #t
|
|
||||||
#:import-path "github.com/gogo/protobuf"
|
|
||||||
;; protoc: exec: "protoc-min-version": executable file not found in $PATH
|
|
||||||
;; err = exec: "protoc": executable file not found in $PATH:
|
|
||||||
#:test-flags
|
|
||||||
#~(list "-skip" (string-join
|
|
||||||
(list "TestDashFilename"
|
|
||||||
"TestEmbedMarshaler"
|
|
||||||
"TestGolden"
|
|
||||||
"TestParameters"
|
|
||||||
"TestPopulateWarning"
|
|
||||||
"TestRepeatedEmbed"
|
|
||||||
"TestStdTypesGoString"
|
|
||||||
"TestTakesTooLongToDebug")
|
|
||||||
"|"))))
|
|
||||||
(synopsis "Protocol Buffers for Go with Gadgets")
|
|
||||||
(description "Gogoprotobuf is a fork of golang/protobuf with extra code
|
|
||||||
generation features. This code generation is used to achieve:
|
|
||||||
@itemize
|
|
||||||
@item fast marshalling and unmarshalling
|
|
||||||
@item more canonical Go structures
|
|
||||||
@item goprotobuf compatibility
|
|
||||||
@item less typing by optionally generating extra helper code
|
|
||||||
@item peace of mind by optionally generating test and benchmark code
|
|
||||||
@item other serialization formats
|
|
||||||
@end itemize")
|
|
||||||
(home-page "https://github.com/gogo/protobuf")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-btcsuite-btclog
|
(define-public go-github-com-btcsuite-btclog
|
||||||
(let ((commit "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a")
|
(let ((commit "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue