sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / stdenv / nix / default.nix
blobe9e9936ccd801c4f302dbe3e2c97dd722edbf1a2
1 { lib
2 , crossSystem, localSystem, config, overlays
3 , bootStages
4 , ...
5 }:
7 assert crossSystem == localSystem;
9 bootStages ++ [
10   (prevStage: {
11     inherit config overlays;
13     stdenv = import ../generic rec {
14       inherit config;
16       inherit (prevStage.stdenv) buildPlatform hostPlatform targetPlatform;
18       preHook = ''
19         export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}"
20         export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}"
21         export NIX_IGNORE_LD_THROUGH_GCC=1
22       '';
24       initialPath = (import ../generic/common-path.nix) { pkgs = prevStage; };
26       cc = import ../../build-support/cc-wrapper {
27         inherit lib;
28         nativeTools = false;
29         nativePrefix = lib.optionalString hostPlatform.isSunOS "/usr";
30         nativeLibc = true;
31         inherit (prevStage) stdenvNoCC binutils coreutils gnugrep;
32         cc = prevStage.gcc.cc;
33         isGNU = true;
34         shell = prevStage.bash + "/bin/sh";
35       };
37       shell = prevStage.bash + "/bin/sh";
39       fetchurlBoot = prevStage.stdenv.fetchurlBoot;
41       overrides = self: super: {
42         inherit cc;
43         inherit (cc) binutils;
44         inherit (prevStage)
45           gzip bzip2 xz bash coreutils diffutils findutils gawk
46           gnumake gnused gnutar gnugrep gnupatch perl;
47       };
48     };
49   })