about summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-03-01 21:09:17 +0000
committerRobin Gloster <mail@glob.in>2016-03-01 21:09:17 +0000
commitd47857c3d900c559dfb5134645311bd78b41a34e (patch)
tree2c0a02d76ce72b5210ea0f0cc97b7343d1bef5fb /pkgs/stdenv
parent1bbb2f0cf3f1303abd40e7bc801e7582b74f3c62 (diff)
parent02891a0de97d965be5b792c60d8287794d3c2e5f (diff)
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/nix/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/stdenv/nix/default.nix b/pkgs/stdenv/nix/default.nix
index 75e1c3814ed0e..30ac92837cba7 100644
--- a/pkgs/stdenv/nix/default.nix
+++ b/pkgs/stdenv/nix/default.nix
@@ -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";
   };