guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 50523e9557c51dd09bb8975460ed5aace52be604
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 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."))))

Reply via email to