restore old config

svn path=/nixpkgs/trunk/; revision=5736
This commit is contained in:
Armijn Hemel 2006-07-17 15:34:04 +00:00
parent f77644624f
commit 4f15479260
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{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];
arch="i386";
}