guix_mirror_bot pushed a commit to branch go-team in repository guix. commit eb0e3ece1d2d37544a591b95b2e9166eb8f6d406 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Fri Jun 13 00:25:16 2025 +0100
gnu: go-jfmt: Fix build. * gnu/packages/golang-check.scm (go-jfmt) [arguments]: Inherit instead of overwrite. Change-Id: Ib8de29eb877bbe70dca3c56ac7a8bcf6a1c3ae4f --- gnu/packages/golang-xyz.scm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7cbb38ed05..d191fa94a4 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -21876,9 +21876,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."))))