diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix b/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix new file mode 100644 index 000000000000..a2cf3204d050 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix @@ -0,0 +1,16 @@ +{stdenv, fetchurl, perl}: + +assert stdenv.system == "i686-linux"; + +stdenv.mkDerivation { + name = "linux-2.6.11.12"; + builder = ./builder.sh; + src = fetchurl { + url = ftp://ftp.nluug.nl/pub/os/Linux/system/kernel/v2.6/linux-2.6.11.12.tar.bz2; + md5 = "7e3b6e630bb05c1a8c1ba46e010dbe44"; + }; + config = ./config; + inherit perl; + buildInputs = [perl]; + arch="i386"; +}