1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Remove gcc and zlib dependency on bootstrap-tools

The 82797f98f2 merge caused this
issue while trying to merge the staging refactorings with
the modular-stdenv feature branch.
This commit is contained in:
Gergely Risko 2014-09-14 19:32:58 +02:00
parent 2e139a9eff
commit 034b07e6ff

View file

@ -85,6 +85,7 @@ rec {
thisStdenv = import ../generic {
inherit system config;
extraBuildInputs = extraPath;
name = "stdenv-linux-boot";
preHook =
''
@ -94,7 +95,7 @@ rec {
${commonPreHook}
'';
shell = "${bootstrapTools}/bin/sh";
initialPath = [bootstrapTools] ++ extraPath;
initialPath = [bootstrapTools];
fetchurlBoot = import ../../build-support/fetchurl {
stdenv = stage0.stdenv;
curl = bootstrapTools;