The kernel build needs hostname and perl
This commit is contained in:
parent
bf7467cbb1
commit
ff728a6365
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, runCommand }:
|
{ stdenv, runCommand, nettools, perl }:
|
||||||
|
|
||||||
{ version, modDirVersion ? version, src, patches ? [], config }:
|
{ version, modDirVersion ? version, src, patches ? [], config }:
|
||||||
|
|
||||||
@ -69,6 +69,8 @@ stdenv.mkDerivation ({
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
INSTALL_PATH = "$out";
|
INSTALL_PATH = "$out";
|
||||||
|
|
||||||
|
buildNativeInputs = [ perl nettools ];
|
||||||
} // optionalAttrs features.modular {
|
} // optionalAttrs features.modular {
|
||||||
MODLIB = "$out/lib/modules/${modDirVersion}";
|
MODLIB = "$out/lib/modules/${modDirVersion}";
|
||||||
|
|
||||||
|
@ -5858,7 +5858,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 stdenv runCommand;
|
inherit stdenv runCommand nettools perl;
|
||||||
};
|
};
|
||||||
|
|
||||||
keyutils = callPackage ../os-specific/linux/keyutils { };
|
keyutils = callPackage ../os-specific/linux/keyutils { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user