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
@@ -1,4 +1,4 @@
{stdenv, fetchurl, kernelHeaders, glibc, libtool, gettext}:
{stdenv, fetchurl, linuxHeaders, glibc, libtool, gettext}:
assert stdenv.isLinux && stdenv.system != "powerpc-linux";
@@ -16,5 +16,5 @@ stdenv.mkDerivation {
-i Makefile
'';
buildInputs = [ kernelHeaders glibc libtool gettext ];
buildInputs = [ linuxHeaders glibc libtool gettext ];
}