Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nvidia-x11: Fix vulkan VK_KHR_xcb_surface

Fixes the issue: https://github.com/NixOS/nixpkgs/issues/39149

Problem was that the Nvidia driver did not find the libxcb-glx at runtime.

authored by

danme and committed by
Daniel Menke
bda072ca 5f59ab7d

+1 -1
+1 -1
pkgs/os-specific/linux/nvidia-x11/generic.nix
··· 61 dontStrip = true; 62 dontPatchELF = true; 63 64 - libPath = makeLibraryPath [ xorg.libXext xorg.libX11 xorg.libXv xorg.libXrandr zlib stdenv.cc.cc ]; 65 66 nativeBuildInputs = [ perl nukeReferences ] 67 ++ optionals (!libsOnly) kernel.moduleBuildDependencies;
··· 61 dontStrip = true; 62 dontPatchELF = true; 63 64 + libPath = makeLibraryPath [ xorg.libXext xorg.libX11 xorg.libXv xorg.libXrandr xorg.libxcb zlib stdenv.cc.cc ]; 65 66 nativeBuildInputs = [ perl nukeReferences ] 67 ++ optionals (!libsOnly) kernel.moduleBuildDependencies;