tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linuxPackages.nvidia_x11: mark as broken on 6.2
Kiskae
3 years ago
8d77f855
7478655e
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
nvidia-x11
generic.nix
+2
-1
pkgs/os-specific/linux/nvidia-x11/generic.nix
···
127
127
platforms = [ "x86_64-linux" ] ++ optionals (!i686bundled) [ "i686-linux" ];
128
128
maintainers = with maintainers; [ jonringer ];
129
129
priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so"
130
130
-
inherit broken;
130
130
+
# proprietary driver currently does not support X86_KERNEL_IBT, which is scheduled to be added in linux 6.2
131
131
+
broken = broken || (kernel != null && kernel.kernelAtLeast "6.2");
131
132
};
132
133
};
133
134