gnu: Add go-github-com-urfave-cli.

* gnu/packages/golang.scm (go-github-com-urfave-cli): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Rouby Pierre-Antoine 2018-05-28 16:59:39 +02:00 committed by Leo Famulari
parent 5a14e81e41
commit 7c2ebbd4a6
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -1471,3 +1471,28 @@ (define-public go-github-com-tevino-abool
(description "This package is atomic boolean library for Go code, (description "This package is atomic boolean library for Go code,
optimized for performance yet simple to use.") optimized for performance yet simple to use.")
(license license:expat)))) (license license:expat))))
(define-public go-github-com-urfave-cli
(let ((commit "cfb38830724cc34fedffe9a2a29fb54fa9169cd1")
(revision "0"))
(package
(name "go-github-com-urfave-cli")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/urfave/cli.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/urfave/cli"))
(home-page "https://github.com/urfave/cli")
(synopsis "Library for building command-line interfaces in Go")
(description "This package provides a library for building command-line
interfaces in Go.")
(license license:expat))))