2016-12-16 13:22:02 +00:00
|
|
|
{ lib
|
2016-12-24 18:55:11 +00:00
|
|
|
, localSystem, crossSystem, config, overlays
|
2016-01-04 02:47:09 +00:00
|
|
|
|
|
|
|
# Allow passing in bootstrap files directly so we can test the stdenv bootstrap process when changing the bootstrap tools
|
|
|
|
, bootstrapFiles ? let
|
|
|
|
fetch = { file, sha256, executable ? true }: import <nix/fetchurl.nix> {
|
2017-03-18 20:48:27 +00:00
|
|
|
url = "http://tarballs.nixos.org/stdenv-darwin/x86_64/c4effbe806be9a0a3727fdbbc9a5e28149347532/${file}";
|
2016-12-24 18:55:11 +00:00
|
|
|
inherit (localSystem) system;
|
|
|
|
inherit sha256 executable;
|
2016-01-04 02:47:09 +00:00
|
|
|
}; in {
|
2017-03-18 20:48:27 +00:00
|
|
|
sh = fetch { file = "sh"; sha256 = "1b9r3dksj907bpxp589yhc4217cas73vni8sng4r57f04ydjcinr"; };
|
|
|
|
bzip2 = fetch { file = "bzip2"; sha256 = "1wm28jgap4cbr8hf4ambg6h9flr2b4mcbh7fw20i0l51v6n8igky"; };
|
|
|
|
mkdir = fetch { file = "mkdir"; sha256 = "0jc32mzx2whhx2xh70grvvgz4jj26118p9yxmhjqcysagc0k7y66"; };
|
|
|
|
cpio = fetch { file = "cpio"; sha256 = "0x5dcczkzn0g8yb4pah449jmgy3nmpzrqy4s480grcx05b6v6hkp"; };
|
|
|
|
tarball = fetch { file = "bootstrap-tools.cpio.bz2"; sha256 = "0ifdc8bwxdhmpbhx2vd3lwjg71gqm6pi5mfm0fkcsbqavl8hd8hz"; executable = false; };
|
2016-01-04 02:47:09 +00:00
|
|
|
}
|
2015-06-18 18:03:32 +01:00
|
|
|
}:
|
|
|
|
|
2016-11-30 23:51:13 +00:00
|
|
|
assert crossSystem == null;
|
|
|
|
|
2015-06-18 18:03:32 +01:00
|
|
|
let
|
2016-12-24 18:55:11 +00:00
|
|
|
inherit (localSystem) system platform;
|
|
|
|
|
2015-11-13 02:59:17 +00:00
|
|
|
libSystemProfile = ''
|
|
|
|
(import "${./standard-sandbox.sb}")
|
|
|
|
'';
|
2015-06-18 18:03:32 +01:00
|
|
|
in rec {
|
|
|
|
commonPreHook = ''
|
2016-02-29 11:10:26 +00:00
|
|
|
export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}"
|
2016-03-15 16:35:07 +00:00
|
|
|
export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}"
|
2015-06-18 18:03:32 +01:00
|
|
|
export NIX_IGNORE_LD_THROUGH_GCC=1
|
|
|
|
stripAllFlags=" " # the Darwin "strip" command doesn't know "-s"
|
2016-10-17 01:47:43 +01:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.10
|
2015-06-18 18:03:32 +01:00
|
|
|
export SDKROOT=
|
|
|
|
export CMAKE_OSX_ARCHITECTURES=x86_64
|
2015-10-06 08:11:00 +01:00
|
|
|
# Workaround for https://openradar.appspot.com/22671534 on 10.11.
|
|
|
|
export gl_cv_func_getcwd_abort_bug=no
|
2015-06-18 18:03:32 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# The one dependency of /bin/sh :(
|
2015-11-07 01:44:02 +00:00
|
|
|
binShClosure = ''
|
|
|
|
(allow file-read* (literal "/usr/lib/libncurses.5.4.dylib"))
|
|
|
|
'';
|
2015-06-18 18:03:32 +01:00
|
|
|
|
|
|
|
bootstrapTools = derivation rec {
|
2016-01-04 02:47:09 +00:00
|
|
|
inherit system;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
|
|
|
name = "bootstrap-tools";
|
|
|
|
builder = bootstrapFiles.sh; # Not a filename! Attribute 'sh' on bootstrapFiles
|
|
|
|
args = [ ./unpack-bootstrap-tools.sh ];
|
|
|
|
|
2016-01-04 02:47:09 +00:00
|
|
|
inherit (bootstrapFiles) mkdir bzip2 cpio tarball;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2015-11-21 20:06:41 +00:00
|
|
|
__sandboxProfile = binShClosure + libSystemProfile;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2017-07-01 01:27:48 +01:00
|
|
|
stageFun = step: last: {shell ? "${bootstrapTools}/bin/bash",
|
2016-12-19 16:10:47 +00:00
|
|
|
overrides ? (self: super: {}),
|
2015-06-18 18:03:32 +01:00
|
|
|
extraPreHook ? "",
|
2016-03-23 17:11:42 +00:00
|
|
|
extraBuildInputs,
|
2015-06-18 18:03:32 +01:00
|
|
|
allowedRequisites ? null}:
|
|
|
|
let
|
|
|
|
thisStdenv = import ../generic {
|
2017-06-29 17:06:55 +01:00
|
|
|
inherit config shell extraBuildInputs;
|
|
|
|
allowedRequisites = if allowedRequisites == null then null else allowedRequisites ++ [
|
2017-07-01 01:27:48 +01:00
|
|
|
thisStdenv.cc.expand-response-params
|
2017-06-29 17:06:55 +01:00
|
|
|
];
|
2015-06-18 18:03:32 +01:00
|
|
|
|
|
|
|
name = "stdenv-darwin-boot-${toString step}";
|
|
|
|
|
2017-07-06 02:47:48 +01:00
|
|
|
buildPlatform = localSystem;
|
|
|
|
hostPlatform = localSystem;
|
|
|
|
targetPlatform = localSystem;
|
|
|
|
|
2015-06-18 21:44:40 +01:00
|
|
|
cc = if isNull last then "/dev/null" else import ../../build-support/cc-wrapper {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit shell;
|
|
|
|
inherit (last) stdenv;
|
|
|
|
inherit (last.pkgs.darwin) dyld;
|
|
|
|
|
|
|
|
nativeTools = true;
|
|
|
|
nativePrefix = bootstrapTools;
|
|
|
|
nativeLibc = false;
|
2017-06-29 17:06:55 +01:00
|
|
|
buildPackages = lib.optionalAttrs (last ? stdenv) {
|
|
|
|
inherit (last) stdenv;
|
|
|
|
};
|
2017-02-13 23:01:04 +00:00
|
|
|
hostPlatform = localSystem;
|
2017-05-21 19:51:02 +01:00
|
|
|
targetPlatform = localSystem;
|
2015-06-18 18:03:32 +01:00
|
|
|
libc = last.pkgs.darwin.Libsystem;
|
2015-08-04 17:55:29 +01:00
|
|
|
isClang = true;
|
2015-06-18 18:03:32 +01:00
|
|
|
cc = { name = "clang-9.9.9"; outPath = bootstrapTools; };
|
|
|
|
};
|
|
|
|
|
2017-07-01 01:27:48 +01:00
|
|
|
preHook = stage0.stdenv.lib.optionalString (shell == "${bootstrapTools}/bin/bash") ''
|
2015-06-18 18:03:32 +01:00
|
|
|
# Don't patch #!/interpreter because it leads to retained
|
|
|
|
# dependencies on the bootstrapTools in the final stdenv.
|
|
|
|
dontPatchShebangs=1
|
|
|
|
'' + ''
|
|
|
|
${commonPreHook}
|
|
|
|
${extraPreHook}
|
|
|
|
'';
|
2016-03-23 17:11:42 +00:00
|
|
|
initialPath = [ bootstrapTools ];
|
2017-05-22 02:37:16 +01:00
|
|
|
|
2015-06-18 18:03:32 +01:00
|
|
|
fetchurlBoot = import ../../build-support/fetchurl {
|
|
|
|
stdenv = stage0.stdenv;
|
|
|
|
curl = bootstrapTools;
|
|
|
|
};
|
|
|
|
|
|
|
|
# The stdenvs themselves don't use mkDerivation, so I need to specify this here
|
2015-11-21 20:06:41 +00:00
|
|
|
stdenvSandboxProfile = binShClosure + libSystemProfile;
|
|
|
|
extraSandboxProfile = binShClosure + libSystemProfile;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-01-16 19:53:56 +00:00
|
|
|
extraAttrs = { inherit platform; parent = last; };
|
2016-12-19 16:10:47 +00:00
|
|
|
overrides = self: super: (overrides self super) // { fetchurl = thisStdenv.fetchurlBoot; };
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
in {
|
2016-12-24 18:55:11 +00:00
|
|
|
inherit config overlays;
|
2016-12-16 13:22:02 +00:00
|
|
|
stdenv = thisStdenv;
|
|
|
|
};
|
2015-06-18 18:03:32 +01:00
|
|
|
|
|
|
|
stage0 = stageFun 0 null {
|
2016-12-19 16:10:47 +00:00
|
|
|
overrides = self: super: with stage0; rec {
|
|
|
|
darwin = super.darwin // {
|
2015-06-18 18:03:32 +01:00
|
|
|
Libsystem = stdenv.mkDerivation {
|
|
|
|
name = "bootstrap-Libsystem";
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out
|
|
|
|
ln -s ${bootstrapTools}/lib $out/lib
|
|
|
|
ln -s ${bootstrapTools}/include-Libsystem $out/include
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
dyld = bootstrapTools;
|
|
|
|
};
|
|
|
|
|
|
|
|
libcxx = stdenv.mkDerivation {
|
|
|
|
name = "bootstrap-libcxx";
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib $out/include
|
|
|
|
ln -s ${bootstrapTools}/lib/libc++.dylib $out/lib/libc++.dylib
|
|
|
|
ln -s ${bootstrapTools}/include/c++ $out/include/c++
|
|
|
|
'';
|
2015-07-27 22:25:34 +01:00
|
|
|
linkCxxAbi = false;
|
2016-09-12 06:46:17 +01:00
|
|
|
setupHook = ../../development/compilers/llvm/3.9/libc++/setup-hook.sh;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
libcxxabi = stdenv.mkDerivation {
|
|
|
|
name = "bootstrap-libcxxabi";
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
ln -s ${bootstrapTools}/lib/libc++abi.dylib $out/lib/libc++abi.dylib
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
extraBuildInputs = [];
|
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
persistent0 = _: _: _: {};
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stage1 = prevStage: with prevStage; stageFun 1 prevStage {
|
2015-06-18 18:03:32 +01:00
|
|
|
extraPreHook = "export NIX_CFLAGS_COMPILE+=\" -F${bootstrapTools}/Library/Frameworks\"";
|
|
|
|
extraBuildInputs = [ pkgs.libcxx ];
|
|
|
|
|
|
|
|
allowedRequisites =
|
|
|
|
[ bootstrapTools ] ++ (with pkgs; [ libcxx libcxxabi ]) ++ [ pkgs.darwin.Libsystem ];
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
overrides = persistent0 prevStage;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
persistent1 = prevStage: self: super: with prevStage; {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit
|
2017-05-24 00:36:50 +01:00
|
|
|
zlib patchutils m4 scons flex perl bison unifdef unzip openssl python
|
2015-06-18 18:03:32 +01:00
|
|
|
libxml2 gettext sharutils gmp libarchive ncurses pkg-config libedit groff
|
|
|
|
openssh sqlite sed serf openldap db cyrus-sasl expat apr-util subversion xz
|
|
|
|
findfreetype libssh curl cmake autoconf automake libtool ed cpio coreutils;
|
|
|
|
|
2016-12-19 16:10:47 +00:00
|
|
|
darwin = super.darwin // {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit (darwin)
|
2017-05-24 00:36:50 +01:00
|
|
|
dyld Libsystem xnu configd ICU libdispatch libclosure launchd;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stage2 = prevStage: with prevStage; stageFun 2 prevStage {
|
2015-11-07 01:44:02 +00:00
|
|
|
extraPreHook = ''
|
|
|
|
export PATH_LOCALE=${pkgs.darwin.locale}/share/locale
|
|
|
|
'';
|
|
|
|
|
2016-03-23 17:11:42 +00:00
|
|
|
extraBuildInputs = with pkgs; [ xz darwin.CF libcxx ];
|
|
|
|
|
2015-06-18 18:03:32 +01:00
|
|
|
allowedRequisites =
|
|
|
|
[ bootstrapTools ] ++
|
2017-05-24 00:36:50 +01:00
|
|
|
(with pkgs; [ xz.bin xz.out libcxx libcxxabi ]) ++
|
|
|
|
(with pkgs.darwin; [ dyld Libsystem CF ICU locale ]);
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
overrides = persistent1 prevStage;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
persistent2 = prevStage: self: super: with prevStage; {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit
|
|
|
|
patchutils m4 scons flex perl bison unifdef unzip openssl python
|
|
|
|
gettext sharutils libarchive pkg-config groff bash subversion
|
|
|
|
openssh sqlite sed serf openldap db cyrus-sasl expat apr-util
|
|
|
|
findfreetype libssh curl cmake autoconf automake libtool cpio
|
|
|
|
libcxx libcxxabi;
|
|
|
|
|
2016-12-19 16:10:47 +00:00
|
|
|
darwin = super.darwin // {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit (darwin)
|
2015-11-07 01:44:02 +00:00
|
|
|
dyld Libsystem xnu configd libdispatch libclosure launchd libiconv locale;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stage3 = prevStage: with prevStage; stageFun 3 prevStage {
|
2015-06-18 18:03:32 +01:00
|
|
|
shell = "${pkgs.bash}/bin/bash";
|
|
|
|
|
|
|
|
# We have a valid shell here (this one has no bootstrap-tools runtime deps) so stageFun
|
|
|
|
# enables patchShebangs above. Unfortunately, patchShebangs ignores our $SHELL setting
|
|
|
|
# and instead goes by $PATH, which happens to contain bootstrapTools. So it goes and
|
|
|
|
# patches our shebangs back to point at bootstrapTools. This makes sure bash comes first.
|
2016-03-23 17:11:42 +00:00
|
|
|
extraBuildInputs = with pkgs; [ xz darwin.CF libcxx pkgs.bash ];
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2015-11-07 01:44:02 +00:00
|
|
|
extraPreHook = ''
|
2016-03-23 17:11:42 +00:00
|
|
|
export PATH=${pkgs.bash}/bin:$PATH
|
2015-11-07 01:44:02 +00:00
|
|
|
export PATH_LOCALE=${pkgs.darwin.locale}/share/locale
|
|
|
|
'';
|
|
|
|
|
2015-06-18 18:03:32 +01:00
|
|
|
allowedRequisites =
|
|
|
|
[ bootstrapTools ] ++
|
2017-05-24 00:36:50 +01:00
|
|
|
(with pkgs; [ xz.bin xz.out bash libcxx libcxxabi ]) ++
|
|
|
|
(with pkgs.darwin; [ dyld ICU Libsystem locale ]);
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
overrides = persistent2 prevStage;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
persistent3 = prevStage: self: super: with prevStage; {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit
|
|
|
|
gnumake gzip gnused bzip2 gawk ed xz patch bash
|
2015-10-05 16:46:49 +01:00
|
|
|
libcxxabi libcxx ncurses libffi zlib gmp pcre gnugrep
|
2015-06-18 18:03:32 +01:00
|
|
|
coreutils findutils diffutils patchutils;
|
|
|
|
|
2017-06-24 12:16:11 +01:00
|
|
|
llvmPackages = let llvmOverride = llvmPackages.llvm.override { inherit libcxxabi; };
|
|
|
|
in super.llvmPackages // {
|
|
|
|
llvm = llvmOverride;
|
|
|
|
clang-unwrapped = llvmPackages.clang-unwrapped.override { llvm = llvmOverride; };
|
|
|
|
};
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-12-19 16:10:47 +00:00
|
|
|
darwin = super.darwin // {
|
2015-11-07 01:44:02 +00:00
|
|
|
inherit (darwin) dyld Libsystem libiconv locale;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stage4 = prevStage: with prevStage; stageFun 4 prevStage {
|
2015-06-18 18:03:32 +01:00
|
|
|
shell = "${pkgs.bash}/bin/bash";
|
2016-03-23 17:11:42 +00:00
|
|
|
extraBuildInputs = with pkgs; [ xz darwin.CF libcxx pkgs.bash ];
|
2015-11-07 01:44:02 +00:00
|
|
|
extraPreHook = ''
|
|
|
|
export PATH_LOCALE=${pkgs.darwin.locale}/share/locale
|
|
|
|
'';
|
2016-12-16 13:22:02 +00:00
|
|
|
overrides = persistent3 prevStage;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
persistent4 = prevStage: self: super: with prevStage; {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit
|
|
|
|
gnumake gzip gnused bzip2 gawk ed xz patch bash
|
2017-05-24 00:36:50 +01:00
|
|
|
libcxxabi libcxx ncurses libffi zlib llvm gmp pcre gnugrep
|
2017-02-11 23:15:12 +00:00
|
|
|
coreutils findutils diffutils patchutils;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-12-19 16:10:47 +00:00
|
|
|
llvmPackages = super.llvmPackages // {
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit (llvmPackages) llvm clang-unwrapped;
|
|
|
|
};
|
|
|
|
|
2016-12-19 16:10:47 +00:00
|
|
|
darwin = super.darwin // {
|
2017-05-24 00:36:50 +01:00
|
|
|
inherit (darwin) dyld ICU Libsystem cctools libiconv;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
2017-02-11 23:15:12 +00:00
|
|
|
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
|
|
|
|
# Need to get rid of these when cross-compiling.
|
|
|
|
inherit binutils binutils-raw;
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stdenvDarwin = prevStage: let pkgs = prevStage; in import ../generic rec {
|
2017-05-22 02:37:16 +01:00
|
|
|
inherit config;
|
2016-12-16 13:22:02 +00:00
|
|
|
inherit (pkgs.stdenv) fetchurlBoot;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
|
|
|
name = "stdenv-darwin";
|
|
|
|
|
2017-07-06 02:47:48 +01:00
|
|
|
buildPlatform = localSystem;
|
|
|
|
hostPlatform = localSystem;
|
|
|
|
targetPlatform = localSystem;
|
|
|
|
|
2015-11-13 02:59:17 +00:00
|
|
|
preHook = commonPreHook + ''
|
|
|
|
export PATH_LOCALE=${pkgs.darwin.locale}/share/locale
|
|
|
|
'';
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2015-11-21 20:06:41 +00:00
|
|
|
stdenvSandboxProfile = binShClosure + libSystemProfile;
|
|
|
|
extraSandboxProfile = binShClosure + libSystemProfile;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
|
|
|
initialPath = import ../common-path.nix { inherit pkgs; };
|
|
|
|
shell = "${pkgs.bash}/bin/bash";
|
|
|
|
|
|
|
|
cc = import ../../build-support/cc-wrapper {
|
2016-12-16 13:22:02 +00:00
|
|
|
inherit (pkgs) stdenv;
|
|
|
|
inherit shell;
|
2015-06-18 18:03:32 +01:00
|
|
|
nativeTools = false;
|
|
|
|
nativeLibc = false;
|
2017-06-29 17:06:55 +01:00
|
|
|
buildPackages = {
|
|
|
|
inherit (prevStage) stdenv;
|
|
|
|
};
|
2017-02-13 23:01:04 +00:00
|
|
|
hostPlatform = localSystem;
|
2017-05-21 19:51:02 +01:00
|
|
|
targetPlatform = localSystem;
|
2015-12-17 22:02:40 +00:00
|
|
|
inherit (pkgs) coreutils binutils gnugrep;
|
2015-06-18 18:03:32 +01:00
|
|
|
inherit (pkgs.darwin) dyld;
|
|
|
|
cc = pkgs.llvmPackages.clang-unwrapped;
|
|
|
|
libc = pkgs.darwin.Libsystem;
|
|
|
|
};
|
|
|
|
|
|
|
|
extraBuildInputs = with pkgs; [ darwin.CF libcxx ];
|
|
|
|
|
|
|
|
extraAttrs = {
|
|
|
|
inherit platform bootstrapTools;
|
|
|
|
libc = pkgs.darwin.Libsystem;
|
|
|
|
shellPackage = pkgs.bash;
|
|
|
|
};
|
|
|
|
|
|
|
|
allowedRequisites = (with pkgs; [
|
2017-05-24 00:36:50 +01:00
|
|
|
xz.out xz.bin libcxx libcxxabi gmp.out gnumake findutils bzip2.out
|
2017-03-18 20:48:27 +00:00
|
|
|
bzip2.bin llvmPackages.llvm llvmPackages.llvm.lib zlib.out zlib.dev libffi.out coreutils ed diffutils gnutar
|
2016-02-01 17:16:50 +00:00
|
|
|
gzip ncurses.out ncurses.dev ncurses.man gnused bash gawk
|
2017-06-01 22:23:56 +01:00
|
|
|
gnugrep llvmPackages.clang-unwrapped patch pcre.out binutils-raw.out
|
2016-02-13 20:46:42 +00:00
|
|
|
binutils-raw.dev binutils gettext
|
2017-07-01 01:27:48 +01:00
|
|
|
cc.expand-response-params
|
2015-06-18 18:03:32 +01:00
|
|
|
]) ++ (with pkgs.darwin; [
|
2017-05-24 00:36:50 +01:00
|
|
|
dyld Libsystem CF cctools ICU libiconv locale
|
2015-06-18 18:03:32 +01:00
|
|
|
]);
|
|
|
|
|
2017-03-18 20:48:27 +00:00
|
|
|
overrides = self: super:
|
|
|
|
let persistent = persistent4 prevStage self super; in persistent // {
|
|
|
|
clang = cc;
|
|
|
|
llvmPackages = persistent.llvmPackages // { clang = cc; };
|
|
|
|
inherit cc;
|
|
|
|
};
|
2015-06-18 18:03:32 +01:00
|
|
|
};
|
2016-01-04 02:47:09 +00:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stagesDarwin = [
|
|
|
|
({}: stage0)
|
|
|
|
stage1
|
|
|
|
stage2
|
|
|
|
stage3
|
|
|
|
stage4
|
|
|
|
(prevStage: {
|
2016-12-24 18:55:11 +00:00
|
|
|
inherit config overlays;
|
2016-12-16 13:22:02 +00:00
|
|
|
stdenv = stdenvDarwin prevStage;
|
|
|
|
})
|
|
|
|
];
|
2015-06-18 18:03:32 +01:00
|
|
|
}
|