From e97d2900d443eff7e62ed487ab7b552bda6f518a Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Mon, 10 May 2010 14:46:17 +0000 Subject: [PATCH] ctags: never use build dir as TMP svn path=/nixpkgs/trunk/; revision=21712 --- pkgs/development/tools/misc/ctags/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/tools/misc/ctags/default.nix b/pkgs/development/tools/misc/ctags/default.nix index 29384a1d1574..577180880805 100644 --- a/pkgs/development/tools/misc/ctags/default.nix +++ b/pkgs/development/tools/misc/ctags/default.nix @@ -13,6 +13,10 @@ stdenv.mkDerivation rec { ''; buildInputs = [ automake autoconf ]; + + # don't use $T(E)MP which is set to the build directory + configureFlags="--enable-tmpdir=/tmp"; + meta = { description = "Exuberant Ctags, a tool for fast source code browsing"; @@ -29,4 +33,5 @@ stdenv.mkDerivation rec { license = "GPLv2+"; }; + }