From 39f93d3d96ea09c0b6502b328ade7dc307dd2a38 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:18:53 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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)))