summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-02-28 18:44:05 +0100
committeraszlig <aszlig@redmoonstudios.org>2013-02-28 18:57:03 +0100
commit94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a (patch)
tree77ae4640d9a0b21e4d7923c8ea751d7a6872a5bd /pkgs/os-specific/linux/kernel
parent329b33c59c807c7136a39523ed01e23b0bb370e6 (diff)
downloadnixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.tar
nixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.tar.gz
nixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.tar.bz2
nixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.tar.lz
nixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.tar.xz
nixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.tar.zst
nixlib-94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a.zip
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@70730bca1331fc50c3caacaea00439de1325bd6e

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/manual-config.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix
index 44c31d824aef..05132b8365ba 100644
--- a/pkgs/os-specific/linux/kernel/manual-config.nix
+++ b/pkgs/os-specific/linux/kernel/manual-config.nix
@@ -1,4 +1,4 @@
-{ stdenv, runCommand, nettools, perl, kmod, writeTextFile }:
+{ stdenv, runCommand, nettools, bc, perl, kmod, writeTextFile }:
 
 with stdenv.lib;
 
@@ -122,7 +122,7 @@ stdenv.mkDerivation {
     runHook postConfigure
   '';
 
-  buildNativeInputs = [ perl nettools ];
+  buildNativeInputs = [ perl bc nettools ];
 
   makeFlags = commonMakeFlags ++ [
    "INSTALLKERNEL=${installkernel stdenv.platform.kernelTarget}"