From 02045177ddba8fdbff2ce199e3136b31fa635053 Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Thu, 20 Nov 2025 12:56:53 +0000 Subject: [PATCH] (zilch lang go): pin Go version Newer Go versions need a different bootstrap. Change-Id: I8545d53d1a0c32dca75c8d150415724d6a6a6964 --- lang/go/src/core.sld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/go/src/core.sld b/lang/go/src/core.sld index 01485fe..b36b5f3 100644 --- a/lang/go/src/core.sld +++ b/lang/go/src/core.sld @@ -42,7 +42,7 @@ (define %goarch (make-parameter "amd64")) ;; The Go toolchain to use to compile this all. - (define go-toolchain (cdr (assoc "out" (nixpkgs "go_latest")))) + (define go-toolchain (cdr (assoc "out" (nixpkgs "go_1_24")))) ;; Builds an importcfg file. This file describes the mapping of both ;; packages to their api, and the mapping of package name as used in `import`