summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel-headers/kernel-headers-2.6.14.3.nix
blob: 9d311201a1933cdfa6dd9fad14db338ab3147105 (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.14.3-i386";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/linux-2.6.14.3.tar.bz2;
    md5 = "982717a9cb246e3c427cc45e3fc86097";
  };
}