Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
730 B
Nix
42 lines
730 B
Nix
{ lib, callPackage, ... }@args:
|
|
|
|
let
|
|
common = opts: callPackage (import ./builder.nix lib opts);
|
|
extraArgs = removeAttrs args [ "callPackage" ];
|
|
in
|
|
rec {
|
|
rke2_1_30 = common (
|
|
(import ./1_30/versions.nix)
|
|
// {
|
|
updateScript = [
|
|
./update-script.sh
|
|
"30"
|
|
];
|
|
}
|
|
) extraArgs;
|
|
|
|
rke2_1_31 = common (
|
|
(import ./1_31/versions.nix)
|
|
// {
|
|
updateScript = [
|
|
./update-script.sh
|
|
"31"
|
|
];
|
|
}
|
|
) extraArgs;
|
|
|
|
rke2_1_32 = common (
|
|
(import ./1_32/versions.nix)
|
|
// {
|
|
updateScript = [
|
|
./update-script.sh
|
|
"32"
|
|
];
|
|
}
|
|
) extraArgs;
|
|
|
|
# Automatically set by update script
|
|
rke2_stable = rke2_1_31;
|
|
rke2_latest = rke2_1_32;
|
|
}
|