manual-kernel: Add bc to buildNativeInputs.
As timeconst.pl was replaced by a bc script in the merge window for kernel 3.9, we also need bc during build time, for more information about the reasons, please have a look at the following commit: torvalds/linux@70730bca13 Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
329b33c59c
commit
94fe64b3eb
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, runCommand, nettools, perl, kmod, writeTextFile }:
|
{ stdenv, runCommand, nettools, bc, perl, kmod, writeTextFile }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
@ -122,7 +122,7 @@ stdenv.mkDerivation {
|
|||||||
runHook postConfigure
|
runHook postConfigure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildNativeInputs = [ perl nettools ];
|
buildNativeInputs = [ perl bc nettools ];
|
||||||
|
|
||||||
makeFlags = commonMakeFlags ++ [
|
makeFlags = commonMakeFlags ++ [
|
||||||
"INSTALLKERNEL=${installkernel stdenv.platform.kernelTarget}"
|
"INSTALLKERNEL=${installkernel stdenv.platform.kernelTarget}"
|
||||||
|
@ -6125,7 +6125,7 @@ let
|
|||||||
|
|
||||||
# A function to build a manually-configured kernel
|
# A function to build a manually-configured kernel
|
||||||
linuxManualConfig = import ../os-specific/linux/kernel/manual-config.nix {
|
linuxManualConfig = import ../os-specific/linux/kernel/manual-config.nix {
|
||||||
inherit (pkgs) stdenv runCommand nettools perl kmod writeTextFile;
|
inherit (pkgs) stdenv runCommand nettools bc perl kmod writeTextFile;
|
||||||
};
|
};
|
||||||
|
|
||||||
keyutils = callPackage ../os-specific/linux/keyutils { };
|
keyutils = callPackage ../os-specific/linux/keyutils { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user