new kernel, uses mktemp, use gcc34 for now (but this can probably be changed to 4.1.1, just being conservative here)

svn path=/nixpkgs/trunk/; revision=5525
This commit is contained in:
Armijn Hemel 2006-06-24 23:24:42 +00:00
parent 5d9d509ab0
commit 901f950aef
2 changed files with 7 additions and 7 deletions

View File

@ -1,16 +1,16 @@
{stdenv, fetchurl, perl}:
{stdenv, fetchurl, perl, mktemp}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "linux-2.6.11.12";
name = "linux-2.6.17.1";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/linux-2.6.11.12.tar.bz2;
md5 = "7e3b6e630bb05c1a8c1ba46e010dbe44";
url = ftp://ftp.nluug.nl/pub/os/Linux/system/kernel/v2.6/linux-2.6.17.1.tar.bz2;
md5 = "0a8f1a66646bc6ac7b3ec3e8f51652a0";
};
config = ./config;
config = ./config-2.6.17.1;
inherit perl;
buildInputs = [perl];
buildInputs = [perl mktemp];
arch="i386";
}

View File

@ -1837,7 +1837,7 @@ rec {
};
kernel = (import ../os-specific/linux/kernel) {
inherit fetchurl perl;
inherit fetchurl perl mktemp;
stdenv = overrideGCC stdenv gcc34;
};