2022-04-27 09:35:20 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchFromGitHub
|
2024-01-02 11:29:13 +00:00
|
|
|
|
, buildPackages
|
2022-04-27 09:35:20 +00:00
|
|
|
|
, cmake
|
|
|
|
|
, pkg-config
|
2023-07-15 17:15:38 +00:00
|
|
|
|
, python3
|
2022-04-27 09:35:20 +00:00
|
|
|
|
, glslang
|
|
|
|
|
, libffi
|
|
|
|
|
, libX11
|
|
|
|
|
, libXau
|
|
|
|
|
, libxcb
|
|
|
|
|
, libXdmcp
|
|
|
|
|
, libXrandr
|
|
|
|
|
, vulkan-headers
|
|
|
|
|
, vulkan-loader
|
2024-01-25 14:12:00 +00:00
|
|
|
|
, vulkan-volk
|
2022-04-27 09:35:20 +00:00
|
|
|
|
, wayland
|
|
|
|
|
, wayland-protocols
|
2022-06-16 17:23:12 +00:00
|
|
|
|
, moltenvk
|
|
|
|
|
, AppKit
|
|
|
|
|
, Cocoa
|
2022-04-27 09:35:20 +00:00
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "vulkan-tools";
|
2024-06-05 15:53:02 +00:00
|
|
|
|
version = "1.3.283.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
|
repo = "Vulkan-Tools";
|
2023-11-16 04:20:00 +00:00
|
|
|
|
rev = "vulkan-sdk-${version}";
|
2024-06-05 15:53:02 +00:00
|
|
|
|
hash = "sha256-IAlqFCenv5e70XyLSYh2fE84JZQFJwg+YKTGaK7ShKA=";
|
2023-04-12 12:48:02 +00:00
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
cmake
|
|
|
|
|
pkg-config
|
2023-07-15 17:15:38 +00:00
|
|
|
|
python3
|
2022-04-27 09:35:20 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
glslang
|
2022-06-16 17:23:12 +00:00
|
|
|
|
vulkan-headers
|
|
|
|
|
vulkan-loader
|
2024-01-25 14:12:00 +00:00
|
|
|
|
vulkan-volk
|
2022-06-16 17:23:12 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
2022-04-27 09:35:20 +00:00
|
|
|
|
libffi
|
|
|
|
|
libX11
|
|
|
|
|
libXau
|
|
|
|
|
libxcb
|
|
|
|
|
libXdmcp
|
|
|
|
|
libXrandr
|
|
|
|
|
wayland
|
|
|
|
|
wayland-protocols
|
2022-06-16 17:23:12 +00:00
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
|
moltenvk
|
|
|
|
|
moltenvk.dev
|
|
|
|
|
AppKit
|
|
|
|
|
Cocoa
|
2022-04-27 09:35:20 +00:00
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
|
libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ];
|
|
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
|
env.PKG_CONFIG_WAYLAND_SCANNER_WAYLAND_SCANNER="${buildPackages.wayland-scanner}/bin/wayland-scanner";
|
|
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
|
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}"
|
2024-01-02 11:29:13 +00:00
|
|
|
|
"-DPKG_CONFIG_EXECUTABLE=${buildPackages.pkg-config}/bin/${buildPackages.pkg-config.targetPrefix}pkg-config"
|
2023-10-09 19:29:22 +00:00
|
|
|
|
"-DGLSLANG_INSTALL_DIR=${glslang}"
|
2021-08-05 21:33:18 +00:00
|
|
|
|
# Hide dev warnings that are useless for packaging
|
|
|
|
|
"-Wno-dev"
|
2022-06-16 17:23:12 +00:00
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
|
"-DMOLTENVK_REPO_ROOT=${moltenvk}/share/vulkan/icd.d"
|
2023-11-16 04:20:00 +00:00
|
|
|
|
# Don’t build the cube demo because it requires `ibtool`, which is not available in nixpkgs.
|
|
|
|
|
"-DBUILD_CUBE=OFF"
|
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";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
maintainers = [ maintainers.ralith ];
|
|
|
|
|
};
|
|
|
|
|
}
|