summary refs log tree commit diff
path: root/pkgs/top-level/stdenv.nix
blob: aeb36b8edc35a828734bde35bfa5e27334e3753a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ system, bootStdenv, crossSystem, config, platform, lib, ... }:
self: super:

with super;

rec {
  allStdenvs = import ../stdenv {
    inherit system platform config lib;
    allPackages = args: import ./../.. ({ inherit config system; } // args);
  };

  defaultStdenv = allStdenvs.stdenv // { inherit platform; };

  stdenv =
    if bootStdenv != null then (bootStdenv // {inherit platform;}) else
      if crossSystem != null then
        stdenvCross
      else
        let
            changer = config.replaceStdenv or null;
        in if changer != null then
          changer {
            # We import again all-packages to avoid recursivities.
            pkgs = import ./../.. {
              # We remove packageOverrides to avoid recursivities
              config = removeAttrs config [ "replaceStdenv" ];
            };
          }
      else
        defaultStdenv;
}