diff options
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 9924e4aa22..254e8d995c 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -23002,9 +23002,13 @@ correctly."))) (define-public go-jfmt (package/inherit go-zgo-at-jfmt (name "go-jfmt") - (arguments (list #:install-source? #f - #:import-path "zgo.at/jfmt/cmd/jfmt" - #:unpack-path "zgo.at/jfmt")) + (arguments + (substitute-keyword-arguments + (package-arguments go-zgo-at-jfmt) + ((#:tests? _ #t) #f) + ((#:install-source? _ #t) #f) + ((#:import-path _) "zgo.at/jfmt/cmd/jfmt") + ((#:unpack-path _ "") "zgo.at/jfmt"))) (description (string-append (package-description go-zgo-at-jfmt) " This package provides a command line interface (CLI) tool.")))) |