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-07-24 05:08:32 +02:00
|
|
|
version = "1.2.182.0";
|
2018-06-27 05:36:15 +02:00
|
|
|
|
2021-07-24 05:08:32 +02: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}";
|
|
|
|
sha256 = "028l2l7jx4443k8207q8jmjq1mnnm9kgyl2417jrkrvylcbv8ji9";
|
|
|
|
});
|
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 ];
|
|
|
|
};
|
|
|
|
}
|