Replace kernelHeaders' by linuxHeaders'.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19067
This commit is contained in:
Ludovic Courtès
2009-12-21 14:04:45 +00:00
parent 310d6e4bbf
commit fac9a5c936
11 changed files with 51 additions and 45 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, kernelHeaders, glibc}:
{stdenv, fetchurl, linuxHeaders, glibc}:
assert stdenv.isLinux && stdenv.system != "powerpc-linux";
@@ -10,6 +10,6 @@ stdenv.mkDerivation {
md5 = "b5493f7a2997130a4f86c486c9993b86";
};
inherit kernelHeaders glibc;
inherit linuxHeaders glibc;
patches = [ ./open-max.patch ];
}