summary refs log tree commit diff
path: root/pkgs/stdenv/default.nix
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2016-01-03 21:47:09 -0500
committerDan Peebles <pumpkin@me.com>2016-01-03 21:47:09 -0500
commit0313b2e09cd306902fcb9967c32f048fada1f484 (patch)
tree67696da069170787df90eab21270e4c0fd7fa80d /pkgs/stdenv/default.nix
parent88c41e1f958de502cadd63e7803c11e427f5d12c (diff)
downloadnixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.tar
nixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.tar.gz
nixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.tar.bz2
nixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.tar.lz
nixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.tar.xz
nixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.tar.zst
nixpkgs-0313b2e09cd306902fcb9967c32f048fada1f484.zip
stdenv-darwin: allow easier testing of bootstrap tools
This un-hardcodes the bootstrap tools passed into the Darwin stdenv and
thus allows us to quickly iterate on improving the design of the full
bootstrap process. We can easily change the contents of the bootstrap
tools and evaluate an entire bootstrap all the way up to real packages.
Diffstat (limited to 'pkgs/stdenv/default.nix')
-rw-r--r--pkgs/stdenv/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix
index 44be0ac83f8..9ea69fe88e9 100644
--- a/pkgs/stdenv/default.nix
+++ b/pkgs/stdenv/default.nix
@@ -36,7 +36,7 @@ rec {
   # Linux standard environment.
   stdenvLinux = (import ./linux { inherit system allPackages platform config lib; }).stdenvLinux;
 
-  stdenvDarwin = (import ./darwin { inherit system allPackages platform config;}).stage5;
+  stdenvDarwin = (import ./darwin { inherit system allPackages platform config;}).stdenvDarwin;
 
   # Select the appropriate stdenv for the platform `system'.
   stdenv =