mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
vulkan-loader: fix pkg-config include directory
With the last update the pkg-config file was changed to cmake variables, which made substituteInPlace ineffective. Fixes #108766
This commit is contained in:
parent
bbaff89ceb
commit
0fe70e7fd4
@ -15,19 +15,23 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
buildInputs = [ python3 xlibsWrapper libxcb libXrandr libXext wayland ];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace loader/vulkan.pc.in \
|
||||
--replace 'includedir=''${prefix}/include' 'includedir=${vulkan-headers}/include' \
|
||||
--replace 'libdir=''${exec_prefix}/@CMAKE_INSTALL_LIBDIR@' 'libdir=@CMAKE_INSTALL_LIBDIR@'
|
||||
'';
|
||||
|
||||
cmakeFlags = [
|
||||
"-DSYSCONFDIR=${addOpenGLRunpath.driverLink}/share"
|
||||
"-DVULKAN_HEADERS_INSTALL_DIR=${vulkan-headers}"
|
||||
"-DCMAKE_INSTALL_INCLUDEDIR=${vulkan-headers}/include"
|
||||
];
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
doInstallCheck = true;
|
||||
|
||||
installCheckPhase = ''
|
||||
grep -q "${vulkan-headers}/include" $dev/lib/pkgconfig/vulkan.pc || {
|
||||
echo vulkan-headers include directory not found in pkg-config file
|
||||
exit 1
|
||||
}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "LunarG Vulkan loader";
|
||||
homepage = "https://www.lunarg.com";
|
||||
|
Loading…
Reference in New Issue
Block a user