mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-hclogvet: Switch to package/inherit.
* gnu/packages/golang-xyz.scm (go-hclogvet): Switch to package/inherit. [arguments]: Substitute keyword arguments instead of overwriting them. [native-inputs]: Inherit. [propagated-inputs]: Drop all. [inputs]: Drop all. Change-Id: I8544c879069d4b13a2356b79eb3c6c05c7adfde3
This commit is contained in:
parent
679ce822e7
commit
3cf2051c28
1 changed files with 11 additions and 6 deletions
|
@ -23832,14 +23832,19 @@ library.")
|
||||||
"\nThis package provides a command line interface (CLI) tool."))))
|
"\nThis package provides a command line interface (CLI) tool."))))
|
||||||
|
|
||||||
(define-public go-hclogvet
|
(define-public go-hclogvet
|
||||||
(package
|
(package/inherit go-github-com-hashicorp-go-hclog
|
||||||
(inherit go-github-com-hashicorp-go-hclog)
|
|
||||||
(name "go-hclogvet")
|
(name "go-hclogvet")
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(substitute-keyword-arguments
|
||||||
#:import-path "github.com/hashicorp/go-hclog/hclogvet"
|
(package-arguments go-github-com-hashicorp-go-hclog)
|
||||||
#:unpack-path "github.com/hashicorp/go-hclog"
|
((#:tests? _ #t) #f)
|
||||||
#:install-source? #f))
|
((#:install-source? _ #t) #f)
|
||||||
|
((#:import-path _) "github.com/hashicorp/go-hclog/hclogvet")
|
||||||
|
((#:unpack-path _ "") "github.com/hashicorp/go-hclog")))
|
||||||
|
(native-inputs
|
||||||
|
(package-propagated-inputs go-github-com-hashicorp-go-hclog))
|
||||||
|
(propagated-inputs '())
|
||||||
|
(inputs '())
|
||||||
(description
|
(description
|
||||||
"@code{hclogvet} is a @code{go vet} tool for checking that the
|
"@code{hclogvet} is a @code{go vet} tool for checking that the
|
||||||
Trace/Debug/Info/Warn/Error methods on @code{hclog.Logger} are used
|
Trace/Debug/Info/Warn/Error methods on @code{hclog.Logger} are used
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue