gnu: Add go-hclogvet.

* gnu/packages/golang-xyz.scm (go-hclogvet): New variable.

Change-Id: I8eccda8a3fbc2cb32f19ad9318eea2229c6064c0
This commit is contained in:
Sharlatan Hellseher 2024-03-21 22:40:16 +00:00
parent 27b339702f
commit f620261a56
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1968,6 +1968,22 @@ (define-public go-gopkg-in-op-go-logging-v1
;;; Executables:
;;;
(define-public go-hclogvet
(package
(inherit go-github-com-hashicorp-go-hclog)
(name "go-hclogvet")
(arguments
(list
#:import-path "github.com/hashicorp/go-hclog/hclogvet"
#:unpack-path "github.com/hashicorp/go-hclog"
#:install-source? #f))
(propagated-inputs
(list go-golang-org-x-tools))
(description
"@code{hclogvet} is a @code{go vet} tool for checking that the
Trace/Debug/Info/Warn/Error methods on @code{hclog.Logger} are used
correctly.")))
(define-public go-numcpus
(package
(inherit go-github-com-tklauser-numcpus)