diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-13 00:25:16 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-11 21:42:57 +0100 |
| commit | 092eae0900c87e2662196f3d914f014fa543ad24 (patch) | |
| tree | 76d09eb55de78e3dcc7ef2b8f9f5ad30aa37e3ab /gnu | |
| parent | 37887593e9021415c8ad3c02a92ea61de740f73d (diff) | |
gnu: go-jfmt: Fix build.
* gnu/packages/golang-check.scm (go-jfmt) [arguments]: Inherit instead
of overwrite.
Change-Id: Ib8de29eb877bbe70dca3c56ac7a8bcf6a1c3ae4f
Diffstat (limited to 'gnu')
| -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 48aaa3aec46..4616a5f8dbe 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -23084,9 +23084,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.")))) |
