2020-07-28 02:40:48 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, python3, vulkan-loader,
|
2021-01-17 09:17:16 +00:00
|
|
|
vulkan-headers, glslang, pkg-config, xlibsWrapper, libxcb,
|
2020-07-28 02:40:48 +01:00
|
|
|
libXrandr, wayland }:
|
2018-06-27 04:36:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "vulkan-tools";
|
2020-12-15 03:59:22 +00:00
|
|
|
version = "1.2.162.0";
|
2018-06-27 04:36:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "Vulkan-Tools";
|
|
|
|
rev = "sdk-${version}";
|
2020-12-15 03:59:22 +00:00
|
|
|
sha256 = "088vqh956zma3p1qc3p6rsygf5s395b6cv8b1x0whp2a0a1y81xz";
|
2018-06-27 04:36:15 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-04-11 17:59:41 +01:00
|
|
|
buildInputs = [ python3 vulkan-headers vulkan-loader xlibsWrapper libxcb libXrandr wayland ];
|
2018-06-27 04:36:15 +01:00
|
|
|
|
2020-07-28 02:40:48 +01: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"
|
|
|
|
"-DGLSLANG_INSTALL_DIR=${glslang}"
|
|
|
|
# vulkaninfo loads libvulkan using dlopen, so we have to add it manually to RPATH
|
|
|
|
"-DCMAKE_INSTALL_RPATH=${libraryPath}"
|
|
|
|
];
|
2018-06-27 04:36:15 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-16 07:47:55 +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";
|
2018-06-27 04:36:15 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ralith ];
|
|
|
|
};
|
|
|
|
}
|