tinygo: build with go 1.26

This commit is contained in:
Lucas Solares
2026-06-24 16:05:35 -06:00
parent 27bf2edc03
commit ca9a2d8790
+4 -4
View File
@@ -1,11 +1,11 @@
{
stdenv,
lib,
buildGo125Module,
buildGo126Module,
fetchFromGitHub,
makeWrapper,
llvmPackages_20,
go_1_25,
go_1_26,
xar,
binaryen,
avrdude,
@@ -18,8 +18,8 @@
let
# nixpkgs typically updates default llvm and go versions faster than tinygo releases
# which ends up breaking this build. Use fixed versions for each release.
buildGoModule = buildGo125Module;
go = go_1_25;
buildGoModule = buildGo126Module;
go = go_1_26;
llvmMajor = lib.versions.major llvm.version;
inherit (llvmPackages_20)
llvm