restore old config
svn path=/nixpkgs/trunk/; revision=5736
This commit is contained in:
parent
f77644624f
commit
4f15479260
|
@ -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";
|
||||
}
|
Loading…
Reference in New Issue