diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-23 15:14:22 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:19 +0100 |
commit | f6b5e69162b65592192630bc613d8fd2447df1be (patch) | |
tree | e7e8e1d7913516fcd6c31126a0a63bf3c11d26f5 /gnu/packages/golang-xyz.scm | |
parent | d7efe30a1677b66036ff27db5b5bc071820382a0 (diff) |
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
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 11 |
1 files 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 |