Merge pull request #228003 from alyssais/vulkan-cts-cross
vulkan-cts: fix cross
This commit is contained in:
commit
8426a11c2f
1 changed files with 5 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
||||||
, vulkan-loader
|
, vulkan-loader
|
||||||
, wayland
|
, wayland
|
||||||
, wayland-protocols
|
, wayland-protocols
|
||||||
|
, wayland-scanner
|
||||||
, zlib
|
, zlib
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
@ -126,13 +127,16 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
ninja
|
ninja
|
||||||
pkg-config
|
pkg-config
|
||||||
python3
|
python3
|
||||||
|
wayland-scanner
|
||||||
];
|
];
|
||||||
|
|
||||||
# Fix cts cmake not coping with absolute install dirs
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
# Fix cts cmake not coping with absolute install dirs
|
||||||
"-DCMAKE_INSTALL_BINDIR=bin"
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
||||||
"-DCMAKE_INSTALL_LIBDIR=lib"
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
||||||
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
||||||
|
|
||||||
|
"-DWAYLAND_SCANNER=wayland-scanner"
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue