all-packages.nix (linuxPackagesFor): fix 'kernelHeaders' attribute
The kernelHeaders attribute generated by the linuxPackagesFor function used to refer to ../os-specific/linux/kernel-headersdefault.nix, but that file no longer exists. Instead, we re-use the linuxHeaders attribute.
This commit is contained in:
parent
6d73db319d
commit
a470e05121
|
@ -5830,7 +5830,7 @@ let
|
|||
|
||||
broadcom_sta = callPackage ../os-specific/linux/broadcom-sta/default.nix { };
|
||||
|
||||
kernelHeaders = callPackage ../os-specific/linux/kernel-headers { };
|
||||
kernelHeaders = linuxHeaders;
|
||||
|
||||
nvidia_x11 = callPackage ../os-specific/linux/nvidia-x11 { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue