f063d8c4db
- disable tiger, strategoxt, they don't work and give errors - ftp.nl.kernel.org seems to have some problems, replaced with ftp.de.kernel.org should be put back eventually svn path=/nixpkgs/trunk/; revision=1215
13 lines
296 B
Nix
13 lines
296 B
Nix
{stdenv, fetchurl}:
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "linux-headers-2.4.25-i386";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.de.kernel.org/pub/linux/kernel/v2.4/linux-2.4.25.tar.bz2;
|
|
md5 = "5fc8e9f43fa44ac29ddf9a9980af57d8";
|
|
};
|
|
}
|