guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 16355ba6eb9811a24901229b093f4f92459e9a4b
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Aug 21 23:44:20 2025 +0300
gnu: go-1.4: Build with regular gcc.
Building with a canonical-package hinders cross-building.
* gnu/packages/golang.scm (go-1.4)[inputs]: Replace the canonical-package
gcc:lib with gcc:lib.
Change-Id: I4f0c8549611461d47cc017314e8eb55815ae549f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b9f46b0f04..56e6ddea1e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -231,7 +231,7 @@
(inputs
`(("tzdata" ,tzdata)
("pcre" ,pcre)
- ("gcc:lib" ,(canonical-package gcc) "lib")))
+ ("gcc:lib" ,gcc "lib")))
(native-inputs
(list pkg-config which net-base perl))