nixpkgs/pkgs/os-specific/linux/kernel-headers/default.nix
Eelco Dolstra 1b39a96d37 * Create a dummy linux/autoconf.h, which is needed by linux/config.h.
* Updated to 2.4.25.

svn path=/nixpkgs/trunk/; revision=819
2004-03-09 10:28:31 +00:00

15 lines
331 B
Nix

{stdenv, fetchurl}:
assert stdenv.system == "i686-linux";
derivation {
name = "linux-headers-2.4.25-i386";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nl.kernel.org/pub/linux/kernel/v2.4/linux-2.4.25.tar.bz2;
md5 = "5fc8e9f43fa44ac29ddf9a9980af57d8";
};
inherit stdenv;
}