summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorDavid Thompson <davet@gnu.org>2025-06-02 12:24:32 +0200
committerLudovic Courtès <ludo@gnu.org>2025-06-17 15:17:17 +0200
commit84cb01dc44b90d475592b2ecde7ea8d9ccf72df9 (patch)
tree193608b2ad452d212300b44660fbea775cb22510 /gnu/packages/golang-xyz.scm
parenta57a72d415e36df96d8aaff1dae9c9c7cafb2567 (diff)
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
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r--gnu/packages/golang-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 19854f3670..715dcf3ddf 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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")