nixpkgs/pkgs/os-specific/linux/kernel/default.nix
Armijn Hemel 76f3ff54cd also remove "i386" from the name. This wasn't accurate anyway, because we
were building for the i686 hardware platform and not for i386.

svn path=/nixpkgs/trunk/; revision=3641
2005-08-19 18:18:21 +00:00

16 lines
361 B
Nix

{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];
}