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.

116 lines
2.9 KiB
Nix
Raw Normal View History

2022-12-20 13:06:26 +00:00
{ lib, stdenv
, fetchFromGitHub
, fetchurl
, cmake
, ffmpeg_4
2022-12-20 13:06:26 +00:00
, libdrm
, libglvnd
, libffi
, libpng
, libX11
, libXau
, libXdmcp
, libxcb
, makeWrapper
, ninja
, pkg-config
, python3
, vulkan-loader
, 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.7.0";
2022-12-20 13:06:26 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "VK-GL-CTS";
rev = "${finalAttrs.pname}-${finalAttrs.version}";
hash = "sha256-f7i7gytk3cKeFQD0FR+nrUR2o0FWaJWKG7OpDz9u42E=";
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}
2022-12-20 13:06:26 +00:00
chmod u+w -R external
'';
buildInputs = [
ffmpeg_4
2022-12-20 13:06:26 +00:00
libdrm
libffi
libglvnd
libpng
libX11
libXau
libXdmcp
libxcb
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
];
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"
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;
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/${finalAttrs.pname}-${finalAttrs.version}";
2022-12-20 13:06:26 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ Flakebi ];
};
})