ef94be2ae1
everything correctly, the config currently compile quite a bit (too much for quick tests). This will change. --This line, and those below, will be ignored-- A linux/kernel A linux/kernel/builder.sh A linux/kernel/default.nix A linux/kernel/config svn path=/nixpkgs/trunk/; revision=3181
16 lines
363 B
Nix
16 lines
363 B
Nix
{stdenv, fetchurl, perl}:
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "linux-2.6.12-i386";
|
|
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];
|
|
}
|