mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #59322 from acowley/vulkan-tools
vulkan-tools: add dependency on vulkan-headers
This commit is contained in:
commit
cacb6f1dd0
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, python3, vulkan-loader,
|
||||
{ stdenv, fetchFromGitHub, cmake, python3, vulkan-loader, vulkan-headers,
|
||||
glslang, pkgconfig, xlibsWrapper, libxcb, libXrandr, wayland }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ python3 vulkan-loader xlibsWrapper libxcb libXrandr wayland ];
|
||||
buildInputs = [ python3 vulkan-headers vulkan-loader xlibsWrapper libxcb libXrandr wayland ];
|
||||
enableParallelBuilding = true;
|
||||
|
||||
cmakeFlags = [ "-DBUILD_ICD=OFF" "-DGLSLANG_INSTALL_DIR=${glslang}" ];
|
||||
|
|
Loading…
Reference in a new issue