nixpkgs/pkgs/os-specific/linux/kernel/default.nix

17 lines
359 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "linux-2.6.11.12";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/linux-2.6.11.12.tar.bz2;
md5 = "7e3b6e630bb05c1a8c1ba46e010dbe44";
};
config = ./config;
inherit perl;
buildInputs = [perl];
arch="i386";
}