Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
682 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
localSystem,
crossSystem,
config,
overlays,
crossOverlays ? [ ],
}:
assert crossSystem == localSystem;
let
bootStages = import ../. {
inherit
lib
localSystem
crossSystem
overlays
;
# Remove config.replaceStdenv to ensure termination.
config = removeAttrs config [ "replaceStdenv" ];
};
in
bootStages
++ [
# Additional stage, built using custom stdenv
(vanillaPackages: {
inherit config overlays;
stdenv =
assert vanillaPackages.stdenv.hostPlatform == localSystem;
assert vanillaPackages.stdenv.targetPlatform == localSystem;
config.replaceStdenv { pkgs = vanillaPackages; };
})
]