summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-12-03 15:58:48 +0100
committerPeter Simons <simons@cryp.to>2014-12-03 16:00:41 +0100
commit79486d44c04a3bab567d22299b76cfdcdfab6223 (patch)
tree767f6f0e2842e8d0be56bbd9e7940bf5a245cf41 /pkgs
parent099eabb49017fab343731f94033723552a41e722 (diff)
downloadnixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.tar
nixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.tar.gz
nixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.tar.bz2
nixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.tar.lz
nixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.tar.xz
nixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.tar.zst
nixlib-79486d44c04a3bab567d22299b76cfdcdfab6223.zip
tree: don't rely on $CC being set in the stdenv build environment
Fixes https://github.com/NixOS/nixpkgs/issues/5214.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/system/tree/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/tree/default.nix b/pkgs/tools/system/tree/default.nix
index eca8882643d1..165eb316a928 100644
--- a/pkgs/tools/system/tree/default.nix
+++ b/pkgs/tools/system/tree/default.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation {
       prefix=$out
       MANDIR=$out/share/man/man1
       ${systemFlags}
-      CC="$CC"
+      CC="cc"
     )
   '';