about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPedroHLC ☭ <root@pedrohlc.com>2023-05-14 09:20:31 -0300
committerPedroHLC ☭ <root@pedrohlc.com>2023-05-14 09:20:31 -0300
commite3a53e1c973765a8cdac282292894fc14d61f1ed (patch)
treef5a3d5acd6db4ccd747f13420765d752255082fb
parent001530620374be5f7344c5dc6184e5a855519675 (diff)
vulkan-caps-viewer: replace withX11 with x11Support to match no-x-libs
-rw-r--r--pkgs/tools/graphics/vulkan-caps-viewer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/vulkan-caps-viewer/default.nix b/pkgs/tools/graphics/vulkan-caps-viewer/default.nix
index eca3703802067..278a606fa19cf 100644
--- a/pkgs/tools/graphics/vulkan-caps-viewer/default.nix
+++ b/pkgs/tools/graphics/vulkan-caps-viewer/default.nix
@@ -5,7 +5,7 @@
 , vulkan-loader
 , wayland
 , wrapQtAppsHook
-, withX11 ? true
+, x11Support ? true
 , qtx11extras
 }:
 
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     vulkan-loader
     wayland
-  ] ++ lib.lists.optionals withX11 [ qtx11extras ];
+  ] ++ lib.lists.optionals x11Support [ qtx11extras ];
 
   patchPhase = ''
     substituteInPlace vulkanCapsViewer.pro \