From b331e30962e9615b1326485d014c2f083bb5eead Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:33:23 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c6c557c..fb45a37 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1811,3 +1811,23 @@ your code will behave as you intend.") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") (license license:expat))) +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat)))