gnu: Add go-github-com-posener-complete.

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

Change-Id: I00aba7ba2c98c9cfcdea2672fca3a46e7cd3548d
This commit is contained in:
Sharlatan Hellseher 2024-12-27 12:20:56 +00:00
parent 0d44363e82
commit 0b0ffebe9c
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -9152,6 +9152,34 @@ Pion}.")
"@code{refmt} is a serialization and object-mapping library.")
(license license:expat)))
(define-public go-github-com-posener-complete
(package
(name "go-github-com-posener-complete")
(version "1.2.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/posener/complete")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0nri6hkfb0z3dkxf2fsfidr4bxbn91rjsqhg5s0c2jplf0aclppz"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/posener/complete"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-hashicorp-go-multierror))
(home-page "https://github.com/posener/complete")
(synopsis "Bash completion implemented in Golang")
(description
"Package complete provides a tool for bash writing bash completion in go,
and bash completion for the go command line.")
(license license:expat)))
(define-public go-github-com-pterm-pterm
(package
(name "go-github-com-pterm-pterm")