adding apptainer 1.0.1

This commit is contained in:
Jean-François GUILLAUME 2022-03-25 12:45:40 +01:00
parent d316bbe5d8
commit 32dd836edc
GPG key ID: 38751DAE145EFB5A

View file

@ -2250,3 +2250,26 @@ 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 coverage report. Go-spew is licensed under the liberal ISC license, so it may
be used in open source or commercial projects.") be used in open source or commercial projects.")
(license license:isc))) (license license:isc)))
(define-public go-gopkg-in-yaml-v2-2.2.2
(package
(name "go-gopkg-in-yaml-v2")
(version "2.2.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gopkg.in/yaml.v2")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"))))
(build-system go-build-system)
(arguments
'(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2"))
(propagated-inputs
`(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405"
,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405)))
(home-page "https://gopkg.in/yaml.v2")
(synopsis "YAML support for the Go language")
(description "Package yaml implements YAML support for the Go language.")
(license license:asl2.0)))