Skip to content

Commit 19f40a3

Browse files
authored
stdenv/custom: avoid aliases (#359492)
2 parents 8cfd191 + e6a064f commit 19f40a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkgs/stdenv/custom/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ in bootStages ++ [
1717
(vanillaPackages: {
1818
inherit config overlays;
1919
stdenv =
20-
assert vanillaPackages.hostPlatform == localSystem;
21-
assert vanillaPackages.targetPlatform == localSystem;
20+
assert vanillaPackages.stdenv.hostPlatform == localSystem;
21+
assert vanillaPackages.stdenv.targetPlatform == localSystem;
2222
config.replaceStdenv { pkgs = vanillaPackages; };
2323
})
2424

0 commit comments

Comments
 (0)