summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-10 18:29:38 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-11 21:42:48 +0100
commitb2e8540b7a18e9dda2f392ea8352d34f6f26c924 (patch)
tree894abb6fc25545680874081baf00432d7bf34575 /gnu/packages
parente36e52d8be882fbd6d68021a3f6fb43be65550f0 (diff)
gnu: go-github-com-hashicorp-go-version: Update to 1.7.0.
* gnu/packages/golang-xyz.scm (go-github-com-hashicorp-go-version): Update to 1.7.0. [arguments] <go>: Use go-1.23. [synopsis]: Fix long line. [description]: Apply fill column. Change-Id: I96d6e11e42122927ff43894867537b0ca8c22aec
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-xyz.scm19
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a263892e63f..20779022315 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9099,7 +9099,7 @@ their component bytes.")
(define-public go-github-com-hashicorp-go-version
(package
(name "go-github-com-hashicorp-go-version")
- (version "1.6.0")
+ (version "1.7.0")
(source
(origin
(method git-fetch)
@@ -9108,18 +9108,19 @@ their component bytes.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0fw6hwvjadpbfj10yk7f64ypw8lmv5s5ny3s4ria0nv6xam1wpai"))))
+ (base32 "04kb102igwnp03rcjjlg7w2lb2dbr7h0w751w72v6imid51kyrsj"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/hashicorp/go-version"))
+ (list
+ #:go go-1.23
+ #:import-path "github.com/hashicorp/go-version"))
(home-page "https://github.com/hashicorp/go-version")
- (synopsis "Go library for parsing and verifying versions and version
-constraints")
+ (synopsis "Parsing and verifying versions for Golang")
(description
- "This package is a library for parsing versions and version
-constraints, and verifying versions against a set of constraints. It can sort
-a collection of versions properly, handles prerelease/beta versions, can
-increment versions.")
+ "This package is a library for parsing versions and version constraints,
+and verifying versions against a set of constraints. It can sort a collection
+of versions properly, handles prerelease/beta versions, can increment
+versions.")
(license license:mpl2.0)))
(define-public go-github-com-hashicorp-golang-lru