guix_mirror_bot pushed a commit to branch go-team in repository guix. commit e82e4615c66eee06db0264accc1a11c834294b7d 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 7c0a734aa4..af79c5fd53 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14089,9 +14089,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