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:
Peter Simons 2012-10-23 18:49:57 +02:00
parent 6d73db319d
commit a470e05121
1 changed files with 1 additions and 1 deletions

View File

@ -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 { };