2023-02-02 18:25:31 +00:00
|
|
|
{ lib, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2023-03-27 19:17:25 +00:00
|
|
|
, ffmpeg_4
|
2023-02-02 18:25:31 +00:00
|
|
|
, libdrm
|
|
|
|
, libglvnd
|
|
|
|
, libffi
|
|
|
|
, libpng
|
|
|
|
, libX11
|
|
|
|
, libXau
|
|
|
|
, libXdmcp
|
|
|
|
, libxcb
|
|
|
|
, makeWrapper
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
, vulkan-loader
|
|
|
|
, wayland
|
|
|
|
, wayland-protocols
|
2023-04-29 16:46:19 +00:00
|
|
|
, wayland-scanner
|
2023-02-02 18:25:31 +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-16 17:41:37 +00:00
|
|
|
# The revisions are extracted from https://github.com/KhronosGroup/VK-GL-CTS/blob/main/external/fetch_sources.py#L290
|
2023-02-02 18:25:31 +00:00
|
|
|
amber = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "amber";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "933ecb4d6288675a92eb1650e0f52b1d7afe8273";
|
|
|
|
hash = "sha256-v9z4gv/mTjaCkByZn6uDpMteQuIf0FzZXeKyoXfFjXo=";
|
|
|
|
};
|
|
|
|
esextractor = fetchFromGitHub {
|
|
|
|
owner = "Igalia";
|
|
|
|
repo = "ESExtractor";
|
|
|
|
rev = "v0.2.5";
|
|
|
|
hash = "sha256-A3lyTTarR1ZJrXcrLDR5D7H1kBwJNyrPPjEklRM9YBY=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
jsoncpp = fetchFromGitHub {
|
|
|
|
owner = "open-source-parsers";
|
|
|
|
repo = "jsoncpp";
|
|
|
|
rev = "9059f5cad030ba11d37818847443a53918c327b1";
|
|
|
|
hash = "sha256-m0tz8w8HbtDitx3Qkn3Rxj/XhASiJVkThdeBxIwv3WI=";
|
|
|
|
};
|
|
|
|
glslang = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "glslang";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "cd2082e0584d4e39d11e3f401184e0d558ab304f";
|
|
|
|
hash = "sha256-j7O0j4E8lQ9tqAiuhnD/t6VL45OUvntsoKlhiuCXet4=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
spirv-tools = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "SPIRV-Tools";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "01828dac778d08f4ebafd2e06bd419f6c84e5984";
|
|
|
|
hash = "sha256-i1rDMVpUiNdacDe20DsN67/rzK5V434EzfSv97y+xGU=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
spirv-headers = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "SPIRV-Headers";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "1feaf4414eb2b353764d01d88f8aa4bcc67b60db";
|
|
|
|
hash = "sha256-VOq3r6ZcbDGGxjqC4IoPMGC5n1APUPUAs9xcRzxdyfk=";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
|
|
|
video-parser = fetchFromGitHub {
|
|
|
|
owner = "nvpro-samples";
|
|
|
|
repo = "vk_video_samples";
|
|
|
|
rev = "7d68747d3524842afaf050c5e00a10f5b8c07904";
|
|
|
|
hash = "sha256-L5IYDm0bLq+NlNrzozu0VQx8zL1na6AhrkjZKxOWSnU=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
vulkan-docs = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "Vulkan-Docs";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "9fff8b252a3688c0231fa78709084bbe677d3bf7";
|
|
|
|
hash = "sha256-KpKsKTY5xCSZ5Y92roa0fq/iqc1hVJNS7l87RFcxyRQ=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "vulkan-cts";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "1.3.6.0";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "VK-GL-CTS";
|
|
|
|
rev = "${finalAttrs.pname}-${finalAttrs.version}";
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-PWkY5PFoxKosteRgbo6aRqGFHBkoEPFcg6NN8EquD8U=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
|
|
|
|
prePatch = ''
|
2023-07-15 17:15:38 +00:00
|
|
|
mkdir -p external/ESExtractor external/renderdoc/src external/spirv-headers external/video-parser external/vulkan-docs
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
cp -r ${renderdoc} external/renderdoc/src/renderdoc_app.h
|
|
|
|
|
|
|
|
cp -r ${amber} external/amber/src
|
2023-07-15 17:15:38 +00:00
|
|
|
cp -r ${esextractor} external/ESExtractor/src
|
2023-02-02 18:25:31 +00:00
|
|
|
cp -r ${jsoncpp} external/jsoncpp/src
|
|
|
|
cp -r ${glslang} external/glslang/src
|
|
|
|
cp -r ${spirv-tools} external/spirv-tools/src
|
|
|
|
cp -r ${spirv-headers} external/spirv-headers/src
|
2023-02-16 17:41:37 +00:00
|
|
|
cp -r ${video-parser} external/video-parser/src
|
2023-02-02 18:25:31 +00:00
|
|
|
cp -r ${vulkan-docs} external/vulkan-docs/src
|
|
|
|
chmod u+w -R external
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
2023-03-27 19:17:25 +00:00
|
|
|
ffmpeg_4
|
2023-02-02 18:25:31 +00:00
|
|
|
libdrm
|
|
|
|
libffi
|
|
|
|
libglvnd
|
|
|
|
libpng
|
|
|
|
libX11
|
|
|
|
libXau
|
|
|
|
libXdmcp
|
|
|
|
libxcb
|
|
|
|
spirv-headers
|
|
|
|
spirv-tools
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
glslang
|
|
|
|
makeWrapper
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
python3
|
2023-04-29 16:46:19 +00:00
|
|
|
wayland-scanner
|
2023-02-02 18:25:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2023-04-29 16:46:19 +00:00
|
|
|
# Fix cts cmake not coping with absolute install dirs
|
2023-02-02 18:25:31 +00:00
|
|
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
"-DWAYLAND_SCANNER=wayland-scanner"
|
2023-02-02 18:25:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mv $out $lib
|
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Khronos Vulkan Conformance Tests";
|
|
|
|
homepage = "https://github.com/KhronosGroup/VK-GL-CTS/blob/main/external/vulkancts/README.md";
|
2023-04-29 16:46:19 +00:00
|
|
|
changelog = "https://github.com/KhronosGroup/VK-GL-CTS/releases/tag/${finalAttrs.pname}-${finalAttrs.version}";
|
2023-02-02 18:25:31 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ Flakebi ];
|
|
|
|
};
|
|
|
|
})
|