Fix "nix" stdenv (close #13554)

Broken by changes introduced in d96893647d
This commit is contained in:
Danny Wilson 2016-02-28 18:37:51 +01:00 committed by Vladimír Čunát
parent a9d24cedeb
commit 850a1a3323

View file

@ -18,10 +18,9 @@ import ../generic rec {
nativePrefix = stdenv.lib.optionalString stdenv.isSunOS "/usr";
nativeLibc = true;
inherit stdenv;
binutils = pkgs.binutils;
inherit (pkgs) binutils coreutils gnugrep;
cc = pkgs.gcc.cc;
isGNU = true;
coreutils = pkgs.coreutils;
shell = pkgs.bash + "/bin/sh";
};