about summary refs log tree commit diff
path: root/pkgs/system/stdenvs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/system/stdenvs.nix')
-rw-r--r--pkgs/system/stdenvs.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/system/stdenvs.nix b/pkgs/system/stdenvs.nix
index 06a9fc50fedff..d770d6874992e 100644
--- a/pkgs/system/stdenvs.nix
+++ b/pkgs/system/stdenvs.nix
@@ -44,7 +44,7 @@
   # 2) Construct a stdenv consisting of the native build environment,
   #    plus the pure glibc.
   stdenvLinuxBoot1 = (import ../stdenv/nix-linux/boot.nix) {
-    system = system;
+    stdenv = stdenvInitial;
     glibc = stdenvLinuxGlibc;
   };
 
@@ -56,7 +56,7 @@
   #    might end up linking against /lib/libncurses).  So repeat, but
   #    now use the Nix-built tools from step 2/3.
   stdenvLinuxBoot2 = (import ../stdenv/nix-linux) {
-    bootStdenv = stdenvLinuxBoot1;
+    stdenv = stdenvLinuxBoot1;
     pkgs = stdenvLinuxBoot1Pkgs;
     glibc = stdenvLinuxGlibc;
   };