adding apptainer 1.0.1

This commit is contained in:
Jean-François GUILLAUME 2022-03-25 10:39:30 +01:00
parent 8a952bc2e5
commit 460d32009e
GPG key ID: 38751DAE145EFB5A

View file

@ -1852,3 +1852,27 @@ your code will behave as you intend.")
"Go-difflib is a partial port of python 3 difflib package. Its main goal was to
make unified and context diff available in pure Go, mostly for testing purposes.")
(license license:bsd-3)))
(define-public go-github-com-davecgh-go-spew-1.1.0
(package
(name "go-github-com-davecgh-go-spew")
(version "1.1.0")
(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 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c"))))
(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)))