about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPedroHLC ☭ <root@pedrohlc.com>2023-03-17 08:07:09 -0300
committerPedroHLC ☭ <root@pedrohlc.com>2023-03-17 08:07:09 -0300
commit145ce7393311f1842a90b38eb8d89baa8888c8f6 (patch)
tree48a743d408ab1c731b3c34300bb7a3eed014c246
parent126f49a01de5b7e35a43fd43f891ecf6d3a51459 (diff)
downloadnixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.tar
nixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.tar.gz
nixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.tar.bz2
nixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.tar.lz
nixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.tar.xz
nixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.tar.zst
nixlib-145ce7393311f1842a90b38eb8d89baa8888c8f6.zip
vulkan-caps-viewer: 3.28 -> 3.29
-rw-r--r--pkgs/tools/graphics/vulkan-caps-viewer/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/graphics/vulkan-caps-viewer/default.nix b/pkgs/tools/graphics/vulkan-caps-viewer/default.nix
index 39492eefb830..96d48040e1d4 100644
--- a/pkgs/tools/graphics/vulkan-caps-viewer/default.nix
+++ b/pkgs/tools/graphics/vulkan-caps-viewer/default.nix
@@ -3,6 +3,7 @@
 , fetchFromGitHub
 , qmake
 , vulkan-loader
+, wayland
 , wrapQtAppsHook
 , withX11 ? true
 , qtx11extras
@@ -10,13 +11,13 @@
 
 stdenv.mkDerivation rec {
   pname = "vulkan-caps-viewer";
-  version = "3.28";
+  version = "3.29";
 
   src = fetchFromGitHub {
     owner = "SaschaWillems";
     repo = "VulkanCapsViewer";
     rev = version;
-    hash = "sha256-gy0gFbPZAwQJHqJvk7WrbZ5y2I+9BGv9VaCoOW1QPek=";
+    hash = "sha256-c7jvlwvz85cf8lUlBPyRYvDkSlvkzSW6Jc6wlyKnHBc=";
     # 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.
     # The result will work with any vulkan-loader version.
@@ -30,6 +31,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [
     vulkan-loader
+    wayland
   ] ++ lib.lists.optionals withX11 [ qtx11extras ];
 
   patchPhase = ''
@@ -38,9 +40,8 @@ stdenv.mkDerivation rec {
   '';
 
   qmakeFlags = [
-    "DEFINES+=wayland"
     "CONFIG+=release"
-  ] ++ lib.lists.optionals withX11 [ "DEFINES+=X11" ];
+  ];
 
   installFlags = [ "INSTALL_ROOT=$(out)" ];