Merge pull request #82425 from Ralith/vulkan-loader-pkgconfig

vulkan-loader: use vulkan-headers include path in pkgconfig file

authored by

Michele Guerini Rocco and committed by
GitHub
58858fab 4580564d

+4
+4
pkgs/development/libraries/vulkan-loader/default.nix
··· 16 16 buildInputs = [ cmake python3 xlibsWrapper libxcb libXrandr libXext wayland ]; 17 17 enableParallelBuilding = true; 18 18 19 + preConfigure = '' 20 + substituteInPlace loader/vulkan.pc.in --replace 'includedir=''${prefix}/include' 'includedir=${vulkan-headers}/include' 21 + ''; 22 + 19 23 cmakeFlags = [ 20 24 "-DSYSCONFDIR=${addOpenGLRunpath.driverLink}/share" 21 25 "-DVULKAN_HEADERS_INSTALL_DIR=${vulkan-headers}"