From d316bbe5d8063219b6272f70bfc58a4fadc2f4d8 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:22:47 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 4115b11..88c1d85 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2226,3 +2226,27 @@ your code will behave as you intend.") (description "This library allow for enabling Windows terminal color support for Go.") (license license:expat))) +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc)))