guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit bb80f9de5ab749a21dda6b1aeb4d5b9386d2e7aa
Author: Sharlatan Hellseher <[email protected]>
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 0a54790373..32c325a05e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -21719,9 +21719,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."))))