summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-25 20:46:53 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-25 21:00:27 +0000
commitbef3d2d78a6b83196af3be61990348220f83825c (patch)
tree4b80c019f632de8c60516097e3a4b10fc60e0b7f /gnu
parent7bbedfd96feda77a9207c1e1250ec61f1153cfb8 (diff)
gnu: go-github-com-spf13-cobra: Update to 1.10.2.
* gnu/packages/golang-xyz.scm (go-github-com-spf13-cobra): Update to 1.10.2. [native-inputs]: Remove go-gopkg-in-yaml-v3. [propagated-inputs]: Add go-go-yaml-in-yaml-v3. Change-Id: I3f1025f69b3635a01f972b504b70ce1cc775ec2f
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm14
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 674527b03dc..ac3905a439e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -23178,26 +23178,24 @@ packages
(define-public go-github-com-spf13-cobra
(package
(name "go-github-com-spf13-cobra")
- (version "1.8.1")
+ (version "1.10.2")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/spf13/cobra")
- (commit (string-append "v" version))))
+ (url "https://github.com/spf13/cobra")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0brbyy5mc6n2j6m6q1xyswh907vxd3wdzvgaci45swgj0747lcf8"))))
+ (base32 "1scbqfd58kbbkpcj1rqg4dhapfwzzlp1xh5f52ijs243b1645d4x"))))
(build-system go-build-system)
(arguments
(list
- #:test-flags #~(list "-skip" "TestGenManSeeAlso")
#:import-path "github.com/spf13/cobra"))
- (native-inputs
- (list go-gopkg-in-yaml-v3))
(propagated-inputs
(list go-github-com-cpuguy83-go-md2man-v2
- go-github-com-spf13-pflag))
+ go-github-com-spf13-pflag
+ go-go-yaml-in-yaml-v3))
(home-page "https://github.com/spf13/cobra")
(synopsis "Go library for creating CLI applications")
(description