Merge pull request #268495 from Kiskae/nvidia/545-brightness-fix

linuxPackages.nvidia_x11.open: apply brightness patch
This commit is contained in:
Nick Cao 2023-11-19 11:00:56 -05:00 committed by GitHub
commit a6bfda8513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, kernel
, nvidia_x11
, hash
@ -18,6 +19,13 @@ stdenv.mkDerivation ({
inherit hash;
};
patches = lib.optionals (nvidia_x11.version == "545.29.02")[
(fetchpatch {
url = "https://github.com/NVIDIA/open-gpu-kernel-modules/files/13310810/0001-nvkms-initialize-brightnessType-in-_BACKLIGHT_BRIGHT.patch.txt";
hash = "sha256-9N+DbyT4VmGNTHXWf23PJU4YWZS+0JK7yqkmkpnINPk=";
})
];
nativeBuildInputs = kernel.moduleBuildDependencies;
makeFlags = kernel.makeFlags ++ [