diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-24 08:03:46 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:20 +0100 |
commit | 44a9581f882da37f532c0350e6c1842761d4f10d (patch) | |
tree | 7f27adde66ce06b433388134028c13163804f856 /gnu/packages/golang-xyz.scm | |
parent | d5bde393b29439473c84dcf45b6e5131705544e0 (diff) |
gnu: Remove go-github-com-alecthomas-kingpin.
go-github-com-alecthomas-kingpin-v2 is a successor of this package.
* gnu/packages/golang-xyz.scm (go-github-com-alecthomas-kingpin): Delete variable.
(go-gopkg-in-alecthomas-kingpin-v2): Inherit from
go-github-com-alecthomas-kingpin-v2.
Change-Id: I9225a40c5cc7a1a5510f680abff031d867fbeb34
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index fdbb982e04..2921b2e166 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -903,34 +903,6 @@ strings or other files). If stdout is not a terminal, colour formatting will be stripped.") (license license:expat))) -(define-public go-github-com-alecthomas-kingpin - (package - (name "go-github-com-alecthomas-kingpin") - (version "2.2.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/kingpin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) - (build-system go-build-system) - (arguments - (list - #:import-path "github.com/alecthomas/kingpin")) - (native-inputs - (list go-github-com-stretchr-testify)) - (propagated-inputs - (list go-github-com-alecthomas-template - go-github-com-alecthomas-units)) - (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-kingpin-v2 (package (name "go-github-com-alecthomas-kingpin-v2") @@ -18180,7 +18152,7 @@ their ASCII approximations.") (define-public go-gopkg-in-alecthomas-kingpin-v2 (package - (inherit go-github-com-alecthomas-kingpin) + (inherit go-github-com-alecthomas-kingpin-v2) (name "go-gopkg-in-alecthomas-kingpin-v2") (arguments (list |