Revert "kernelHeaders: fix build with libmpc"

This reverts commit b0adde8f8a.

Doesn't fix the issue for grsec kernels.
This commit is contained in:
Domen Kožar 2016-04-07 11:34:15 +01:00
parent 516f47efef
commit 22bd9c12fe

View File

@ -1,4 +1,4 @@
{ stdenv, kernel, perl, libmpc }:
{ stdenv, kernel, perl }:
let
baseBuildFlags = [ "INSTALL_HDR_PATH=$(out)" "headers_install" ];
@ -7,7 +7,7 @@ in stdenv.mkDerivation {
inherit (kernel) src patches;
nativeBuildInputs = [ perl libmpc ];
nativeBuildInputs = [ perl ];
buildFlags = [ "ARCH=${stdenv.platform.kernelArch}" ] ++ baseBuildFlags;