summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-2.6.17.nix
blob: a89399a5578e1bd53b72a7267aaaefad6bc134ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl, perl, mktemp}:

assert stdenv.system == "i686-linux";

stdenv.mkDerivation {
  name = "linux-2.6.17.13";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://ftp.nl.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.13.tar.bz2;
    md5 = "834885b3ad9988b966570bee92459572";
  };
  config = ./config-2.6.17.1;
  inherit perl;
  buildInputs = [perl mktemp];
  arch="i386";
}