* Add findutils to the bootstrap tools.

svn path=/nixpkgs/trunk/; revision=6791
This commit is contained in:
Eelco Dolstra
2006-10-20 16:01:38 +00:00
parent 4a00169ff6
commit 65bbb45ab7
7 changed files with 66 additions and 32 deletions
+4 -1
View File
@@ -7,5 +7,8 @@ stdenv.mkDerivation {
md5 = "f1e0ddf09f28f8102ff3b90f3b5bc920";
};
buildInputs = [coreutils];
patches = [./findutils-path.patch];
patches = [./findutils-path.patch]
# Note: the dietlibc is just to get findutils to compile. The
# locate command probably won't work though.
++ (if stdenv ? isDietLibC then [./dietlibc-hack.patch] else []);
}