Commit e6a064f7 authored by Maëlys Bras de fer's avatar Maëlys Bras de fer
Browse files

stdenv/custom: avoid aliases

parent a41b6f0e
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; };
  })