sharlatan pushed a commit to branch go-team
in repository guix.
commit 4e3a8c3dc00b9a4e7aeaa51bc8b87983c60d22e2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Feb 23 15:14:22 2025 +0000
gnu: go-github-com-alecthomas-kingpin-v2: Do not inherit.
* gnu/packages/golang-xyz.scm (go-github-com-alecthomas-kingpin-v2): Do
not inherit from go-github-com-alecthomas-kingpin.
Change-Id: Iaa00c39990fe89fabe37e0b9552d4074ba61bee1
---
gnu/packages/golang-xyz.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 9e545ee04c..fdbb982e04 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -933,7 +933,6 @@ be stripped.")
(define-public go-github-com-alecthomas-kingpin-v2
(package
- (inherit go-github-com-alecthomas-kingpin)
(name "go-github-com-alecthomas-kingpin-v2")
(version "2.4.0")
(source
@@ -945,14 +944,20 @@ be stripped.")
(file-name (git-file-name name version))
(sha256
(base32 "12xl62xzwq2h71hp1i0133403zhyqwsh95sr870fx18wmpqh8shf"))))
+ (build-system go-build-system)
(arguments
(list
#:import-path "github.com/alecthomas/kingpin/v2"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-alecthomas-units
go-github-com-xhit-go-str2duration-v2))
- (native-inputs
- (list go-github-com-stretchr-testify))))
+ (home-page "https://github.com/alecthomas/kingpin")
+ (synopsis "Go library provides utilities for building command line
interfaces")
+ (description
+ "Go library provides utilities for building command line interfaces.")
+ (license license:expat)))
(define-public go-github-com-alecthomas-kong
(package