summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel-headers/default.fix
blob: cc626a25b2695016c39722d66e76c7652998ba3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}: derivation {
  # !!! check that this is a i386
  name = "linux-headers-2.4.22-i386";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nl.kernel.org/pub/linux/kernel/v2.4/linux-2.4.22.tar.bz2;
    md5 = "75dc85149b06ac9432106b8941eb9f7b";
  };
  stdenv = stdenv;
}