diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-13 00:25:16 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-26 19:55:47 +0200 |
commit | 6e5d5c1dce88ecf47131e727a86570ca6a8da299 (patch) | |
tree | 8cae5bbcf7b3cbad71ea69fae9dd09ca609c99ae | |
parent | ec8b7d9d622d297a6369159be0ddef8149e57cf3 (diff) |
gnu: go-jfmt: Fix build.
* gnu/packages/golang-check.scm (go-jfmt) [arguments]: Inherit instead
of overwrite.
Change-Id: Ib8de29eb877bbe70dca3c56ac7a8bcf6a1c3ae4f
-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.")))) |