2021-05-06 18:46:16 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, glslang, libX11, libxcb
|
|
|
|
, libXrandr, vulkan-headers, vulkan-loader, wayland }:
|
2018-06-27 05:36:15 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "vulkan-tools";
|
2021-05-06 18:46:16 +02:00
|
|
|
version = "1.2.176.0";
|
2018-06-27 05:36:15 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "Vulkan-Tools";
|
|
|
|
rev = "sdk-${version}";
|
2021-05-06 18:46:16 +02:00
|
|
|
sha256 = "15jkjn3ildam4ad2x0d8ysm3i2l6nrvqv0h44spkipf13bqiq5wg";
|
2018-06-27 05:36:15 +02:00
|
|
|
};
|
|
|
|
|
2021-05-06 18:46:16 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ glslang libX11 libxcb libXrandr vulkan-headers vulkan-loader wayland ];
|
2018-06-27 05:36:15 +02:00
|
|
|
|
2020-07-28 03:40:48 +02: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}"
|
2021-05-06 18:46:16 +02:00
|
|
|
# Hide dev warnings that are useless for packaging
|
|
|
|
"-Wno-dev"
|
2020-07-28 03:40:48 +02:00
|
|
|
];
|
2018-06-27 05:36:15 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-11-16 08:47:55 +01: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 05:36:15 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ralith ];
|
|
|
|
};
|
|
|
|
}
|