mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add go-github-com-blang-semver.
* gnu/packages/golang.scm (go-github-com-blang-semver): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
7c2ebbd4a6
commit
67836c5956
1 changed files with 25 additions and 0 deletions
|
@ -1496,3 +1496,28 @@ (define-public go-github-com-urfave-cli
|
||||||
(description "This package provides a library for building command-line
|
(description "This package provides a library for building command-line
|
||||||
interfaces in Go.")
|
interfaces in Go.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public go-github-com-blang-semver
|
||||||
|
(let ((commit "60ec3488bfea7cca02b021d106d9911120d25fe9")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-blang-semver")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/blang/semver.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19pli07y5592g4dyjyj0jq5rn548vc3fz0qg3624vm1j5828p1c2"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/blang/semver"))
|
||||||
|
(home-page "https://github.com/blang/semver")
|
||||||
|
(synopsis "Semantic versioning library written in Go")
|
||||||
|
(description "Semver is a library for Semantic versioning written in Go.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue