adding apptainer 1.0.1

This commit is contained in:
Jean-François GUILLAUME 2022-03-25 12:22:47 +01:00
parent a3cd3e33dd
commit d316bbe5d8
GPG key ID: 38751DAE145EFB5A

View file

@ -2226,3 +2226,27 @@ your code will behave as you intend.")
(description (description
"This library allow for enabling Windows terminal color support for Go.") "This library allow for enabling Windows terminal color support for Go.")
(license license:expat))) (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)))