diff options
author | Sarah Morgensen <iskarian@mgsn.dev> | 2021-09-09 17:50:10 -0700 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-09-09 21:34:50 -0400 |
commit | 63cc4dd5793b62802354a31d8e6913f065d3bcec (patch) | |
tree | c76ba26d93152d0b07f755ddc792f2e240dad9d9 /gnu/packages/golang.scm | |
parent | f161f111e0692da4103196a351081a6396f3834a (diff) | |
download | guix-63cc4dd5793b62802354a31d8e6913f065d3bcec.tar guix-63cc4dd5793b62802354a31d8e6913f065d3bcec.tar.gz |
gnu: go-github-com-urfave-cli-v2: Fix tests when building with Go 1.17.
* gnu/packages/patches/go-github-com-urfave-cli-v2-fix-tests.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/golang.scm (go-github-com-urfave-cli-v2)[origin]: Apply it.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 2d0bbdb30d..4c6b41e406 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5003,7 +5003,10 @@ fast and distributable command line applications in an expressive way.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "08pvn7gyfznni72xrxfh2x6xxa8ykr7l1ka278js8g8qkh71bj8l")))) + (base32 "08pvn7gyfznni72xrxfh2x6xxa8ykr7l1ka278js8g8qkh71bj8l")) + ;; XXX: Remove patch when updating. + (patches + (search-patches "go-github-com-urfave-cli-v2-fix-tests.patch")))) (arguments '(#:import-path "github.com/urfave/cli/v2")))) |