summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Neidhardt <mail@ambrevar.xyz>2018-10-24 12:07:04 +0200
committerPierre Neidhardt <mail@ambrevar.xyz>2018-10-24 12:13:50 +0200
commitb5bb0b500bf0bc14bbb5d554a75d4f46f1d74795 (patch)
treeb709b913b4d84842e178cfcbdf398e01a93defcb
parent20f48e4b5da6b0ea818a10651900ed62315348e2 (diff)
gnu: Add go-github-com-urfave-cli.
* gnu/packages/golang.scm (go-github-com-urfave-cli): New variable.
-rw-r--r--gnu/packages/golang.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f614c41d678..e07bf6c8e5e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3208,3 +3208,29 @@ as conversion to and from @command{net.Addr}.")
3208 (synopsis "Gitignore parser for Go") 3208 (synopsis "Gitignore parser for Go")
3209 (description "A @command{.gitignore} parser for Go.") 3209 (description "A @command{.gitignore} parser for Go.")
3210 (license license:expat)))) 3210 (license license:expat))))
3211
3212(define-public go-github-com-urfave-cli
3213 (let ((commit "934abfb2f102315b5794e15ebc7949e4ca253920")
3214 (revision "0"))
3215 (package
3216 (name "go-github-com-urfave-cli")
3217 (version (git-version "1.19.1" revision commit))
3218 (source
3219 (origin
3220 (method git-fetch)
3221 (uri (git-reference
3222 (url "https://github.com/urfave/cli.git")
3223 (commit commit)))
3224 (file-name (git-file-name name version))
3225 (sha256
3226 (base32
3227 "0c5r8pgj3k48dfcwj8lw3cxkwkl8vh0fhvz5snfdwd0bcxdqx1yq"))))
3228 (build-system go-build-system)
3229 (arguments
3230 '(#:import-path "github.com/urfave/cli"))
3231 (home-page "https://github.com/urfave/cli")
3232 (synopsis "Simple, fast, and fun package for building command line apps in Go")
3233 (description "@command{cli} is a simple, fast, and fun package for
3234building command line apps in Go. The goal is to enable developers to write
3235fast and distributable command line applications in an expressive way.")
3236 (license license:expat))))