* Latest klibc.

svn path=/nixpkgs/trunk/; revision=7133
This commit is contained in:
Eelco Dolstra
2006-11-25 21:49:42 +00:00
parent 3df5921afe
commit 66b646d7e7
5 changed files with 41 additions and 45 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, kernel, perl, bison, flexWrapper}:
{stdenv, fetchurl, perl, bison, mktemp}:
assert stdenv.isLinux;
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
url = http://www.kernel.org/pub/linux/libs/klibc/klibc-1.4.tar.bz2;
md5 = "f4e0e17fc660e59c39e448fe1d827d36";
};
inherit kernel;
# buildInputs = [perl bison flexWrapper];
# patches = [./klibc-installpath.patch];
inherit (stdenv.glibc) kernelHeaders;
buildInputs = [perl bison mktemp];
patches = [./install.patch];
}