mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 11:30:44 +02:00
gnu: Add go-github-com-masterminds-semver.
* gnu/packages/golang-xyz.scm (go-github-com-masterminds-semver): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Change-Id: Ic64f1a9fd600a69cffa8fabee2887b2731f2509b
This commit is contained in:
parent
a57a72d415
commit
84cb01dc44
1 changed files with 24 additions and 0 deletions
|
@ -11328,6 +11328,30 @@ ways. It is a Go implementation of some string manipulation libraries of Java
|
|||
Apache Commons.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-masterminds-semver
|
||||
(package
|
||||
(name "go-github-com-masterminds-semver")
|
||||
(version "1.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Masterminds/semver")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1i169xscsxsh8lsw8bz2apnsqixld37xdnfh36i30xy5wnf0iwfx"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/Masterminds/semver"))
|
||||
(home-page "https://github.com/Masterminds/semver")
|
||||
(synopsis "@code{semver} helps to work with semantic versions")
|
||||
(description
|
||||
"Package semver provides the ability to work with
|
||||
@url{https://semver.org, Semantic Versions} in Go.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-masterminds-semver-v3
|
||||
(package
|
||||
(name "go-github-com-masterminds-semver-v3")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue