diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 3c0714f..0c9b240 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2628,3 +2628,24 @@ debugging, to avoid wrapping long output lines in the terminal.") (synopsis "uuid") (description "Package uuid generates and inspects UUIDs.") (license license:bsd-3))) +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (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 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3)))