adding apptainer 1.0.1

This commit is contained in:
Jean-François GUILLAUME 2022-03-25 09:08:14 +01:00
parent a43878dcd4
commit 13e10f1c19
GPG key ID: 38751DAE145EFB5A

View file

@ -13475,3 +13475,33 @@ information, see the @url{https://www.cni.dev,CNI website}.")
"The package image provides libraries and commands to interact with container "The package image provides libraries and commands to interact with container
images.") images.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public go-github-com-spf13-cobra
(package
(name "go-github-com-spf13-cobra")
(version "1.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/spf13/cobra")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n"))))
(build-system go-build-system)
(arguments '(#:import-path "github.com/spf13/cobra"))
(propagated-inputs
`(("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)
("go-github-com-spf13-viper" ,go-github-com-spf13-viper)
("go-github-com-spf13-pflag" ,go-github-com-spf13-pflag)
("go-github-com-inconshreveable-mousetrap"
,go-github-com-inconshreveable-mousetrap)
("go-github-com-cpuguy83-go-md2man-v2"
,go-github-com-cpuguy83-go-md2man-v2)))
(home-page "https://github.com/spf13/cobra")
(synopsis "Overview")
(description
"Package cobra is a commander providing a simple interface to create powerful
modern CLI interfaces. In addition to providing an interface, Cobra
simultaneously provides a controller to organize your application code.")
(license license:asl2.0)))