sharlatan pushed a commit to branch go-team in repository guix. commit eebc21af16ec16a5e87ffc092adf1f6df322b32f Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 4ddfbf6be9..d8817276bc 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