summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nvidia-x11/default.nix
diff options
context:
space:
mode:
authorKiskae <Kiskae@users.noreply.github.com>2023-05-13 16:43:06 +0200
committerKiskae <Kiskae@users.noreply.github.com>2023-05-13 16:43:06 +0200
commitaf114e543f814d772f0107c668038819e03fa5ad (patch)
treeeb746917e3d642e5df747c5b470f518ca8208979 /pkgs/os-specific/linux/nvidia-x11/default.nix
parentf6ad55ab2fb2247b9350be6a10134a98becc64f6 (diff)
downloadnixpkgs-af114e543f814d772f0107c668038819e03fa5ad.tar
nixpkgs-af114e543f814d772f0107c668038819e03fa5ad.tar.gz
nixpkgs-af114e543f814d772f0107c668038819e03fa5ad.tar.bz2
nixpkgs-af114e543f814d772f0107c668038819e03fa5ad.tar.lz
nixpkgs-af114e543f814d772f0107c668038819e03fa5ad.tar.xz
nixpkgs-af114e543f814d772f0107c668038819e03fa5ad.tar.zst
nixpkgs-af114e543f814d772f0107c668038819e03fa5ad.zip
linuxPackages.nvidia_x11_legacy370: fix up to kernel 6.3
Diffstat (limited to 'pkgs/os-specific/linux/nvidia-x11/default.nix')
-rw-r--r--pkgs/os-specific/linux/nvidia-x11/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix
index 6e9c7b47f5f..574065e7b27 100644
--- a/pkgs/os-specific/linux/nvidia-x11/default.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/default.nix
@@ -120,8 +120,8 @@ rec {
     aurPatches = fetchFromGitHub {
       owner = "archlinux-jerry";
       repo = "nvidia-340xx";
-      rev = "fe2b38e66f2199777bcede6eb35c5df0210f15dc";
-      hash = "sha256-hPFfzWGo2jF/DLm1OkP+BBnRY69N8kKUZ1EGkoHJlKA=";
+      rev = "f472f9297fe2ae285b954cd3f88abd8e2e255e4f";
+      hash = "sha256-tMA69Wlhi14DMS3O3nfwMX3EiT8pKa6McLxFpAayoEI=";
     };
     patchset = [
       "0001-kernel-5.7.patch"
@@ -135,6 +135,8 @@ rec {
       "0009-kernel-5.17.patch"
       "0010-kernel-5.18.patch"
       "0011-kernel-6.0.patch"
+      "0012-kernel-6.2.patch"
+      "0013-kernel-6.3.patch"
     ];
   in generic {
     version = "340.108";
@@ -144,7 +146,7 @@ rec {
     persistencedSha256 = "1ax4xn3nmxg1y6immq933cqzw6cj04x93saiasdc0kjlv0pvvnkn";
     useGLVND = false;
 
-    broken = kernel.kernelAtLeast "6.2";
+    broken = kernel.kernelAtLeast "6.4";
     patches = map (patch: "${aurPatches}/${patch}") patchset;
   };
 }