From 74703f45629af9bd0fb48b256c860d80c72f3f5b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:07:14 +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 31e91c5..c851c78 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2020,3 +2020,24 @@ the operating system.") (i18n) and localization (l10n), such as character encodings, text transformations, and locale-specific text handling.") (license license:bsd-3))) +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3)))