Commit 551ef9c8 authored by superherointj's avatar superherointj
Browse files

k3s: pin go version to k3s go.mod

- Go 1.20 is being removed. #295077
- K3s should use go compiler version from go.mod file for each version.
parent 717a3422
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -32547,10 +32547,8 @@ with pkgs;
  jwm-settings-manager = callPackage ../applications/window-managers/jwm/jwm-settings-manager.nix { };
  inherit (callPackage ../applications/networking/cluster/k3s {
    buildGoModule = buildGo120Module;
  }) k3s_1_26 k3s_1_27 k3s_1_28;
  inherit (callPackage ../applications/networking/cluster/k3s { }) k3s_1_29;
    buildGoModule = buildGo121Module;
  }) k3s_1_26 k3s_1_27 k3s_1_28 k3s_1_29;
  k3s = k3s_1_29;
  k3sup = callPackage ../applications/networking/cluster/k3sup { };