1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

linuxPackages.nvidia_x11: apply kernel module makeFlags

This commit is contained in:
Bernardo Meurer 2021-08-30 16:27:26 -07:00
parent 7b2709f6a4
commit 636e17aab5
No known key found for this signature in database
GPG key ID: F4C0D53B8D14C246

View file

@ -75,6 +75,8 @@ let
kernel = if libsOnly then null else kernel.dev;
kernelVersion = if libsOnly then null else kernel.modDirVersion;
makeFlags = optionals (!libsOnly) kernel.makeFlags;
hardeningDisable = [ "pic" "format" ];
dontStrip = true;