mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
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 }:
|
||||
|
||||
|
@ -69,6 +69,8 @@ stdenv.mkDerivation ({
|
|||
'';
|
||||
|
||||
INSTALL_PATH = "$out";
|
||||
|
||||
buildNativeInputs = [ perl nettools ];
|
||||
} // optionalAttrs features.modular {
|
||||
MODLIB = "$out/lib/modules/${modDirVersion}";
|
||||
|
||||
|
|
|
@ -5858,7 +5858,7 @@ let
|
|||
|
||||
# A function to build a manually-configured kernel
|
||||
linuxManualConfig = import ../os-specific/linux/kernel/manual-config.nix {
|
||||
inherit stdenv runCommand;
|
||||
inherit stdenv runCommand nettools perl;
|
||||
};
|
||||
|
||||
keyutils = callPackage ../os-specific/linux/keyutils { };
|
||||
|
|
Loading…
Reference in a new issue