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:
parent
2e139a9eff
commit
034b07e6ff
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue