a9d19f45db
library. * Removed devicemapperStatic, e2fsprogsDiet, lvm2Static since they're redundant (it's what you get when you use pkgsDiet/pkgsStatic). svn path=/nixpkgs/trunk/; revision=12554
18 lines
532 B
Nix
18 lines
532 B
Nix
{stdenv, fetchurl, perl, bison, mktemp, kernel}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "klibc-1.5";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = mirror://kernel/linux/libs/klibc/klibc-1.5.tar.bz2;
|
|
sha256 = "1izhf8kscjymsvsvhcqw9awnmp94vwv70zdj09srg9bkpjj0n017";
|
|
# url = mirror://kernel/linux/libs/klibc/Testing/klibc-1.5.14.tar.bz2;
|
|
# sha256 = "1cmrqpgamnv2ns7dlxjm61zc88dxm4ff0aya413ij1lmhp2h2sfc";
|
|
};
|
|
inherit kernel;
|
|
buildInputs = [perl bison mktemp];
|
|
#patches = [./install.patch];
|
|
}
|