go stuff: bump to go 1.23 for modules and pkgs

This commit is contained in:
Motiejus Jakštys 2024-08-19 15:24:53 +03:00
parent 697dd243f0
commit 8b031738f8
1 changed files with 7 additions and 1 deletions

View File

@ -102,7 +102,13 @@
pkgs-unstable = import nixpkgs-unstable {
inherit (super) system;
overlays = [ (_self: super: { go = super.go_1_23; }) ];
overlays = [
(_self: super: {
go = super.go_1_23;
buildGoModule = super.buildGo123Module;
buildGoPackage = super.buildGo123Package;
})
];
};
})
];