3
0
Fork 0
forked from mirrors/nixpkgs

allow for variability, don't change the default

svn path=/nixpkgs/trunk/; revision=5999
This commit is contained in:
Armijn Hemel 2006-07-30 22:47:39 +00:00
parent 3e38e12467
commit 7930f906dc
2 changed files with 13 additions and 12 deletions

View file

@ -1,12 +1 @@
{stdenv, fetchurl}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "linux-headers-2.6.14.3-i386";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/linux-2.6.14.3.tar.bz2;
md5 = "982717a9cb246e3c427cc45e3fc86097";
};
}
import ./kernel-headers-2.6.14.3.nix

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "linux-headers-2.6.14.3-i386";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/linux-2.6.14.3.tar.bz2;
md5 = "982717a9cb246e3c427cc45e3fc86097";
};
}