add klibc

svn path=/nixpkgs/trunk/; revision=3723
This commit is contained in:
Armijn Hemel
2005-08-27 20:48:05 +00:00
parent 42f3a42cee
commit a816f506a2
4 changed files with 71 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
{stdenv, fetchurl, kernel, perl, bison, flexWrapper}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "klibc-1.0";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.kernel.org/pub/linux/libs/klibc/klibc-1.0.tar.bz2;
md5 = "daaa233fb7905cbe110896fcad9bec7f";
};
inherit kernel;
buildInputs = [perl bison flexWrapper];
patches = [./klibc-installpath.patch];
}