nixpkgs/pkgs/tools/graphics/vulkan-cts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

140 lines
3.5 KiB
Nix
Raw Normal View History

2022-12-20 13:06:26 +00:00
{ lib, stdenv
, fetchFromGitHub
, fetchurl
, runCommand
2022-12-20 13:06:26 +00:00
, cmake
, ffmpeg
, glslang
2022-12-20 13:06:26 +00:00
, libdrm
, libglvnd
, libffi
, libpng
, libX11
, libXau
, libXdmcp
, libxcb
, makeWrapper
, mesa
2022-12-20 13:06:26 +00:00
, ninja
, pkg-config
, python3
, spirv-headers
, vulkan-headers
2022-12-20 13:06:26 +00:00
, vulkan-loader
, vulkan-utility-libraries
2022-12-20 13:06:26 +00:00
, wayland
, wayland-protocols
2023-04-24 19:39:50 +00:00
, wayland-scanner
2022-12-20 13:06:26 +00:00
, zlib
}:
let
renderdoc = fetchurl {
url = "https://raw.githubusercontent.com/baldurk/renderdoc/v1.1/renderdoc/api/app/renderdoc_app.h";
hash = "sha256-57XwqlsbDq3GOhxiTAyn9a8TOqhX1qQnGw7z0L22ho4=";
};
# The build system expects all these dependencies inside the external folder and
# does not search for system-wide installations.
# It also expects the version specified in the repository, which can be incompatible
# with the version in nixpkgs (e.g. for SPIRV-Headers), so we don't want to patch in our packages.
2023-02-13 19:55:44 +00:00
# The revisions are extracted from https://github.com/KhronosGroup/VK-GL-CTS/blob/main/external/fetch_sources.py#L290
2023-08-26 16:56:30 +00:00
# with the vk-cts-sources.py script.
sources = import ./sources.nix { inherit fetchurl fetchFromGitHub; };
2022-12-20 13:06:26 +00:00
in
stdenv.mkDerivation (finalAttrs: {
pname = "vulkan-cts";
version = "1.3.9.0";
2022-12-20 13:06:26 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "VK-GL-CTS";
rev = "vulkan-cts-${finalAttrs.version}";
hash = "sha256-JCepNBVHaN4KXRcLOZ2z7toBMri90tV7kjNWHRXRESE=";
2022-12-20 13:06:26 +00:00
};
prePatch = ''
2023-08-26 16:56:30 +00:00
mkdir -p external/renderdoc/src
2022-12-20 13:06:26 +00:00
cp -r ${renderdoc} external/renderdoc/src/renderdoc_app.h
2023-08-26 16:56:30 +00:00
${sources.prePatch}
substituteInPlace external/vulkan-validationlayers/CMakeLists.txt \
--replace-fail 'UPDATE_DEPS ON' 'UPDATE_DEPS OFF'
2022-12-20 13:06:26 +00:00
chmod u+w -R external
'';
buildInputs = [
ffmpeg
2022-12-20 13:06:26 +00:00
libdrm
libffi
libglvnd
libpng
libX11
libXau
libXdmcp
libxcb
vulkan-headers
vulkan-utility-libraries
2022-12-20 13:06:26 +00:00
wayland
wayland-protocols
zlib
];
nativeBuildInputs = [
cmake
makeWrapper
ninja
pkg-config
python3
2023-04-24 19:39:50 +00:00
wayland-scanner
2022-12-20 13:06:26 +00:00
];
depsBuildBuild = [
pkg-config
];
2022-12-20 13:06:26 +00:00
cmakeFlags = [
2023-04-24 19:39:50 +00:00
# Fix cts cmake not coping with absolute install dirs
2022-12-20 13:06:26 +00:00
"-DCMAKE_INSTALL_BINDIR=bin"
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DCMAKE_INSTALL_INCLUDEDIR=include"
2023-04-24 19:39:50 +00:00
"-DWAYLAND_SCANNER=wayland-scanner"
# For vulkan-validation-layers
"-DGLSLANG_INSTALL_DIR=${glslang}"
"-DSPIRV_HEADERS_INSTALL_DIR=${spirv-headers}"
2022-12-20 13:06:26 +00:00
];
postInstall = ''
# Check that nothing was installed so far
! test -e $out
2022-12-20 13:06:26 +00:00
mkdir -p $out/bin $out/archive-dir
cp -a external/vulkancts/modules/vulkan/deqp-vk external/vulkancts/modules/vulkan/deqp-vksc $out/bin/
cp -a external/vulkancts/modules/vulkan/vulkan $out/archive-dir/
cp -a external/vulkancts/modules/vulkan/vk-default $out/
wrapProgram $out/bin/deqp-vk \
--add-flags '--deqp-vk-library-path=${vulkan-loader}/lib/libvulkan.so' \
--add-flags "--deqp-archive-dir=$out/archive-dir"
'';
2023-08-26 16:56:30 +00:00
passthru.updateScript = ./update.sh;
passthru.tests.lavapipe = runCommand "vulkan-cts-tests-lavapipe" {
nativeBuildInputs = [ finalAttrs.finalPackage mesa.llvmpipeHook ];
} ''
deqp-vk -n dEQP-VK.api.smoke.triangle
touch $out
'';
2023-08-26 16:56:30 +00:00
2022-12-20 13:06:26 +00:00
meta = with lib; {
description = "Khronos Vulkan Conformance Tests";
homepage = "https://github.com/KhronosGroup/VK-GL-CTS/blob/main/external/vulkancts/README.md";
changelog = "https://github.com/KhronosGroup/VK-GL-CTS/releases/tag/vulkan-cts-${finalAttrs.version}";
2022-12-20 13:06:26 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ Flakebi ];
};
})