guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 5f7f23dc912ec0523682d31b8866bfdb5bfb85b1 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 e5a81760d6..e7fb6a5dc7 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14101,9 +14101,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