2022-04-27 09:35:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, glslang
|
|
|
|
, libffi
|
|
|
|
, libX11
|
|
|
|
, libXau
|
|
|
|
, libxcb
|
|
|
|
, libXdmcp
|
|
|
|
, libXrandr
|
|
|
|
, vulkan-headers
|
|
|
|
, vulkan-loader
|
|
|
|
, wayland
|
|
|
|
, wayland-protocols
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vulkan-tools";
|
2022-04-27 09:35:20 +00:00
|
|
|
version = "1.3.211.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-08-05 21:33:18 +00:00
|
|
|
# It's not strictly necessary to have matching versions here, however
|
|
|
|
# since we're using the SDK version we may as well be consistent with
|
|
|
|
# the rest of nixpkgs.
|
|
|
|
src = (assert version == vulkan-headers.version;
|
|
|
|
fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "Vulkan-Tools";
|
|
|
|
rev = "sdk-${version}";
|
2022-04-27 09:35:20 +00:00
|
|
|
sha256 = "sha256-iXsWTKNllPZy1Kpo3JHzEEus3Hu9LofvMB3c4Gn6/DM=";
|
2021-08-05 21:33:18 +00:00
|
|
|
});
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glslang
|
|
|
|
libffi
|
|
|
|
libX11
|
|
|
|
libXau
|
|
|
|
libxcb
|
|
|
|
libXdmcp
|
|
|
|
libXrandr
|
|
|
|
vulkan-headers
|
|
|
|
vulkan-loader
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ];
|
|
|
|
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
# Don't build the mock ICD as it may get used instead of other drivers, if installed
|
|
|
|
"-DBUILD_ICD=OFF"
|
|
|
|
# vulkaninfo loads libvulkan using dlopen, so we have to add it manually to RPATH
|
|
|
|
"-DCMAKE_INSTALL_RPATH=${libraryPath}"
|
2022-04-27 09:35:20 +00:00
|
|
|
"-DPKG_CONFIG_EXECUTABLE=${pkg-config}/bin/pkg-config"
|
2021-08-05 21:33:18 +00:00
|
|
|
# Hide dev warnings that are useless for packaging
|
|
|
|
"-Wno-dev"
|
2020-10-16 20:44:37 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-11-19 00:13:47 +00:00
|
|
|
description = "Khronos official Vulkan Tools and Utilities";
|
|
|
|
longDescription = ''
|
|
|
|
This project provides Vulkan tools and utilities that can assist
|
|
|
|
development by enabling developers to verify their applications correct
|
|
|
|
use of the Vulkan API.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/KhronosGroup/Vulkan-Tools";
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ralith ];
|
|
|
|
};
|
|
|
|
}
|