Unverified Commit 19f40a30 authored by Artturin's avatar Artturin Committed by GitHub
Browse files

stdenv/custom: avoid aliases (#359492)

parents 8cfd191f e6a064f7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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; };
  })