510ff785e7
from the fbsplash kernel patch. So use the actual patched kernel as an input to klibc, instead of Glibc's kernel headers. svn path=/nixpkgs/trunk/; revision=7138
16 lines
374 B
Nix
16 lines
374 B
Nix
{stdenv, fetchurl, perl, bison, mktemp, kernel}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "klibc-1.4";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.kernel.org/pub/linux/libs/klibc/klibc-1.4.tar.bz2;
|
|
md5 = "f4e0e17fc660e59c39e448fe1d827d36";
|
|
};
|
|
inherit kernel;
|
|
buildInputs = [perl bison mktemp];
|
|
patches = [./install.patch];
|
|
}
|