about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel-headers/default.nix
blob: 1c27eb9d135d04396ca39d0a2a42245c6e4123c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{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";
  };
}