60 lines
1.6 KiB
Nix
60 lines
1.6 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, qmake
|
||
|
, vulkan-loader
|
||
|
, wrapQtAppsHook
|
||
|
, withX11 ? true
|
||
|
, qtx11extras
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "vulkan-caps-viewer";
|
||
|
version = "3.24";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "SaschaWillems";
|
||
|
repo = "VulkanCapsViewer";
|
||
|
rev = "${version}";
|
||
|
hash = "sha256-BSydAPZ74rGzW4UA/aqL2K/86NTK/eZqc3MZUbdq7iU=";
|
||
|
# Note: this derivation strictly requires vulkan-header to be the same it was developed against.
|
||
|
# To help they put in a git-submodule.
|
||
|
# It works with older vulkan-loaders.
|
||
|
fetchSubmodules = true;
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
qmake
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
vulkan-loader
|
||
|
] ++ lib.lists.optionals withX11 [ qtx11extras ];
|
||
|
|
||
|
patchPhase = ''
|
||
|
substituteInPlace vulkanCapsViewer.pro \
|
||
|
--replace '/usr/' "/"
|
||
|
'';
|
||
|
|
||
|
qmakeFlags = [
|
||
|
"DEFINES+=wayland"
|
||
|
"CONFIG+=release"
|
||
|
] ++ lib.lists.optionals withX11 [ "DEFINES+=X11" ];
|
||
|
|
||
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
mainProgram = "vulkanCapsViewer";
|
||
|
description = "Vulkan hardware capability viewer";
|
||
|
longDescription = ''
|
||
|
Client application to display hardware implementation details for GPUs supporting the Vulkan API by Khronos.
|
||
|
The hardware reports can be submitted to a public online database that allows comparing different devices, browsing available features, extensions, formats, etc.
|
||
|
'';
|
||
|
homepage = "https://vulkan.gpuinfo.org/";
|
||
|
platforms = platforms.unix;
|
||
|
license = licenses.gpl2Only;
|
||
|
maintainers = with maintainers; [ pedrohlc ];
|
||
|
};
|
||
|
}
|