gnu: Add go-github-com-akamensky-argparse.

* gnu/packages/golang-xyz.scm (go-github-com-akamensky-argparse): New variable.

Change-Id: I851f1a98a2ef417b0e57f4c9fc0b584aff4d901c
Signed-off-by: Artyom V. Poptsov <poptsov.artyom@gmail.com>
This commit is contained in:
Sharlatan Hellseher 2025-08-24 21:33:30 +01:00 committed by Artyom V. Poptsov
parent a612e7cc8b
commit e7e6f86b06
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -1013,6 +1013,32 @@ Distance}.")
http://tartarus.org/~martin/PorterStemmer/index.html.") http://tartarus.org/~martin/PorterStemmer/index.html.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-akamensky-argparse
(package
(name "go-github-com-akamensky-argparse")
(version "1.4.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/akamensky/argparse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1m7rzrfwyrwxbbry5ppds2b3c5gdslpakvjhsh6i8mhdfhywd8wc"))))
(build-system go-build-system)
(arguments
(list
;; Panic: unexpected call to os.Exit(0) during test.
#:test-flags #~(list "-skip" "TestUsageString")
#:import-path "github.com/akamensky/argparse"))
(home-page "https://github.com/akamensky/argparse")
(synopsis "Argparse for golang")
(description
"This package implements a flexible and configurable option for command
line arguments parsing.")
(license license:expat)))
(define-public go-github-com-alecaivazis-survey-v2 (define-public go-github-com-alecaivazis-survey-v2
(package (package
(name "go-github-com-alecaivazis-survey-v2") (name "go-github-com-alecaivazis-survey-v2")