summary refs log tree commit diff
path: root/pkgs/tools/system/tree
diff options
context:
space:
mode:
authorMichael Eden <themichaeleden@gmail.com>2019-03-16 11:47:48 -0400
committerMichael Eden <themichaeleden@gmail.com>2019-03-16 16:30:37 -0400
commit70d56f381f8f713aa17d453bd21235f1889487a0 (patch)
tree44e59d32d63b23250971965159ae1a19f62ee13f /pkgs/tools/system/tree
parent33e9fa2367c973d91bd729adce12634cc010dc8c (diff)
downloadnixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.tar
nixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.tar.gz
nixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.tar.bz2
nixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.tar.lz
nixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.tar.xz
nixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.tar.zst
nixpkgs-70d56f381f8f713aa17d453bd21235f1889487a0.zip
tree: use $CC instead of cc to build
Diffstat (limited to 'pkgs/tools/system/tree')
-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 d798c98679c..a69a527f68f 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"
     )
   '';