3
0
Fork 0
forked from mirrors/nixpkgs

* Use the very latest kernel headers, while we're at it.

svn path=/nixpkgs/trunk/; revision=6313
This commit is contained in:
Eelco Dolstra 2006-08-29 18:07:03 +00:00
parent a6409626a4
commit 82249837c6
2 changed files with 12 additions and 12 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl}:
assert stdenv.isLinux;
stdenv.mkDerivation {
name = "linux-headers-2.6.17.11";
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.nl.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.11.tar.bz2;
md5 = "2958a620129c442a8ba3a665ea34ca8b";
};
}

View file

@ -1,12 +0,0 @@
{stdenv, fetchurl}:
assert stdenv.isLinux;
stdenv.mkDerivation {
name = "linux-headers-2.6.17.6";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nl.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.6.tar.bz2;
md5 = "5013fbe6049e32675187c203aef92218";
};
}