1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +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:
David Thompson 2025-06-02 12:24:32 +02:00 committed by Ludovic Courtès
parent a57a72d415
commit 84cb01dc44
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")