adding apptainer 1.0.1

This commit is contained in:
Jean-François GUILLAUME 2022-03-25 13:06:17 +01:00
parent f84e586087
commit de69af3402
GPG key ID: 38751DAE145EFB5A

View file

@ -2457,3 +2457,28 @@ events.")
"Package assert implements the same assertions as the `assert` package but stops "Package assert implements the same assertions as the `assert` package but stops
test execution when a test fails.") test execution when a test fails.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-smartystreets-gunit-1.0.0
(package
(name "go-github-com-smartystreets-gunit")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/smartystreets/gunit")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d"))))
(build-system go-build-system)
(arguments '(#:import-path "github.com/smartystreets/gunit"))
(propagated-inputs
`(("go-github-com-smartystreets-assertions-1.0.0"
,go-github-com-smartystreets-assertions-1.0.0)))
(home-page "https://github.com/smartystreets/gunit")
(synopsis "gunit")
(description
"Package gunit provides \"testing\" package hooks and convenience functions for
writing tests in an xUnit style. See the README file and the examples folder
for examples.")
(license license:expat)))