Merge pull request #212752 from PedroHLC/vulkan-caps-viewer-3.28

vulkan-caps-viewer: 3.27 -> 3.28
This commit is contained in:
Thiago Kenji Okada 2023-01-26 14:18:12 +00:00 committed by GitHub
commit a945deb306
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,13 +10,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "vulkan-caps-viewer"; pname = "vulkan-caps-viewer";
version = "3.27"; version = "3.28";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SaschaWillems"; owner = "SaschaWillems";
repo = "VulkanCapsViewer"; repo = "VulkanCapsViewer";
rev = version; rev = version;
hash = "sha256-B/FBX63JnBdshNLVMPA0qGnm0c/RGilIahX3VjJnpkI="; hash = "sha256-gy0gFbPZAwQJHqJvk7WrbZ5y2I+9BGv9VaCoOW1QPek=";
# Note: this derivation strictly requires vulkan-header to be the same it was developed against. # Note: this derivation strictly requires vulkan-header to be the same it was developed against.
# To help us, they've put it in a git-submodule. # To help us, they've put it in a git-submodule.
# The result will work with any vulkan-loader version. # The result will work with any vulkan-loader version.
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
qmakeFlags = [ qmakeFlags = [
"DEFINES+=wayland" "DEFINES+=wayland"
"CONFIG+=release" "CONFIG+=release"
] ++ lib.lists.optionals withX11 [ "DEFINES+=X11" ]; ] ++ lib.lists.optionals withX11 [ "DEFINES+=X11" ];
installFlags = [ "INSTALL_ROOT=$(out)" ]; installFlags = [ "INSTALL_ROOT=$(out)" ];
@ -51,10 +51,11 @@ stdenv.mkDerivation rec {
Client application to display hardware implementation details for GPUs supporting the Vulkan API by Khronos. 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. 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/"; homepage = "https://vulkan.gpuinfo.org/";
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.gpl2Only; license = licenses.gpl2Only;
maintainers = with maintainers; [ pedrohlc ]; maintainers = with maintainers; [ pedrohlc ];
changelog = "https://github.com/SaschaWillems/VulkanCapsViewer/releases/tag/${version}";
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin; broken = stdenv.isDarwin;
}; };