mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
kernel: Don't propagate the dev output
The current default multiple-output propagation rules don't seem to work too well if the dev output isn't the first one; without this we get an unnecessary runtime reference to the kernel headers.
This commit is contained in:
parent
1ac0e05f69
commit
09637ac363
@ -74,7 +74,7 @@ let
|
||||
|
||||
installsFirmware = (config.isEnabled "FW_LOADER") &&
|
||||
(isModular || (config.isDisabled "FIRMWARE_IN_KERNEL"));
|
||||
in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // {
|
||||
in (optionalAttrs isModular { outputs = [ "out" "dev" ]; propagatedOutputs = ""; }) // {
|
||||
passthru = {
|
||||
inherit version modDirVersion config kernelPatches;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user