nixpkgs/pkgs/applications/networking/cluster/k3s/default.nix
Euan Kemp ddd0723d15 k3s_1_26: 1.26.4+k3s1 -> 1.26.5+k3s1
This also allowed us to drop 'multicallContainerd' as a variable since
1.27 and 1.26 both use it now.

See https://github.com/k3s-io/k3s/issues/7475 for context.
2023-07-06 09:24:40 +09:00

17 lines
412 B
Nix

{ lib, stdenv, callPackage }:
let
k3s_builder = import ./builder.nix lib;
common = opts: callPackage (k3s_builder opts);
in
{
k3s_1_26 = common ((import ./1_26/versions.nix) // {
updateScript = [ ./update-script.sh "26" ];
}) { };
# 1_27 can be built with the same builder as 1_26
k3s_1_27 = common ((import ./1_27/versions.nix) // {
updateScript = [ ./update-script.sh "27" ];
}) { };
}