sharlatan pushed a commit to branch go-team
in repository guix.
commit fe924ee84a4be98e3daebb1c61bb6904f769f82c
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 cf7f404695..b0460c55f2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -930,7 +930,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
@@ -942,14 +941,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