[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: go-keyify: Fix build.
From: |
guix-commits |
Subject: |
01/05: gnu: go-keyify: Fix build. |
Date: |
Thu, 1 Feb 2024 02:53:23 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 82dacb49b23c089fcf3dff0303635c0f5a6d3b77
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Feb 1 07:42:07 2024 +0000
gnu: go-keyify: Fix build.
* gnu/packages/golang-check.scm (go-keyify) [arguments] <#:go>: Swap to
go-20.
Change-Id: Ida1aafbbbf4c6a0ff8104c81b82b66c7ecb64218
---
gnu/packages/golang-check.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index fc142d87e7..af193fcd26 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -661,7 +661,8 @@ advanced Go linter.")
(inherit go-honnef-co-go-tools)
(name "go-keyify")
(arguments
- `(#:import-path "honnef.co/go/tools/cmd/keyify"
+ `(#:go ,go-1.20
+ #:import-path "honnef.co/go/tools/cmd/keyify"
#:unpack-path "honnef.co/go/tools"
#:install-source? #f))
(synopsis "Transform an unkeyed struct literal into a keyed one in Go")