From 13e10f1c193e7fc7e1686bfc80edc43b72ba0c21 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 09:08:14 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0279069..4a6aaba 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -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 images.") (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)))