25ab1079f9
applications (e.g., `...glibc-2.3.4/include/linux/byteorder/little_endian.h:43: error: parse error before "__cpu_to_le64p"'). svn path=/nixpkgs/trunk/; revision=2289
13 lines
301 B
Nix
13 lines
301 B
Nix
{stdenv, fetchurl}:
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "linux-headers-2.6.10-i386";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/os/Linux/system/kernel/v2.6/linux-2.6.10.tar.bz2;
|
|
md5 = "cffcd2919d9c8ef793ce1ac07a440eda";
|
|
};
|
|
}
|