gnu: Add unparam.

* gnu/packages/golang.scm (unparam): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Katherine Cox-Buday 2023-01-17 18:45:02 -07:00 committed by Christopher Baines
parent a62ed0b3bf
commit 347ac7fbde
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -9848,6 +9848,31 @@ (define-public go-go-uber-org-multierr
"@code{multierr} allows combining one or more Go errors together.")
(license license:expat)))
(define-public unparam
(package
(name "unparam")
(version "0.0.0-20221223090309-7455f1af531d")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mvdan/unparam")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32
"0wynf0b32azxljncw5fh9bwkxpdflvf9q1z16wyj432566yjh12c"))))
(build-system go-build-system)
(arguments
`(#:import-path "mvdan.cc/unparam"
#:go ,go-1.19))
(inputs (list go-golang-org-x-sys go-golang-org-x-mod
go-github-com-pkg-diff go-golang-org-x-tools
go-github-com-rogpeppe-go-internal))
(home-page "https://mvdan.cc/unparam/")
(synopsis "Find unused parameters in Go")
(description "Reports unused function parameters and results in Go code.")
(license license:bsd-3)))
(define-public xurls
(package
(name "xurls")