nixpkgs/pkgs/os-specific/linux/kernel/linux-2.6.17.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

17 lines
383 B
Nix

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