guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit b586650d0ef879ec892000bb22d688979068fc2e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 10 13:24:42 2025 +0100
gnu: go-github-com-pborman-getopt-v2: Fix build.
* gnu/packages/golang-xyz.scm (go-github-com-pborman-getopt-v2)
[arguments]: Do not overwrite arguments.
Change-Id: I4beda937ccd4aa381566994594e9fb1b773ea03e
---
gnu/packages/golang-xyz.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 4758fb49d1..e784d50f5c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14653,9 +14653,10 @@ programs that use traditional command lines.")
(base32 "0sacv6g8cxfibxd3gnfjnzp7fynrnc4s2aaz5wbxivqqhvflc22l"))))
(build-system go-build-system)
(arguments
- (list
- #:import-path "github.com/pborman/getopt/v2"
- #:unpack-path "github.com/pborman/getopt"))))
+ (substitute-keyword-arguments
+ (package-arguments go-github-com-pborman-getopt)
+ ((#:import-path _) "github.com/pborman/getopt/v2")
+ ((#:unpack-path _ "") "github.com/pborman/getopt")))))
(define-public go-github-com-pborman-uuid
(package