0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

stdenv/custom: avoid aliases

(cherry picked from commit e6a064f749)
This commit is contained in:
Maëlys Bras de fer 2024-11-27 04:41:31 +00:00 committed by github-actions[bot]
parent 975ea7ae66
commit 6bb2fb7b03

View file

@ -17,8 +17,8 @@ in bootStages ++ [
(vanillaPackages: {
inherit config overlays;
stdenv =
assert vanillaPackages.hostPlatform == localSystem;
assert vanillaPackages.targetPlatform == localSystem;
assert vanillaPackages.stdenv.hostPlatform == localSystem;
assert vanillaPackages.stdenv.targetPlatform == localSystem;
config.replaceStdenv { pkgs = vanillaPackages; };
})