From fa99d1c7454292a9ae06583da03023eeb5fe2d59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Mon, 17 Feb 2025 09:14:12 +0100 Subject: [PATCH] prl-tools: add wayland dependency This is required for prlcc to function correctly in wayland sessions. Previously, when using wayland, prlcc did not detect the session. Features such as 'Use all displays in Full Screen' and adjusting the resolution based on host window size were thus not available in Wayland sessions. --- pkgs/os-specific/linux/prl-tools/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/prl-tools/default.nix b/pkgs/os-specific/linux/prl-tools/default.nix index 935fcb4001fc..0de175e9025a 100644 --- a/pkgs/os-specific/linux/prl-tools/default.nix +++ b/pkgs/os-specific/linux/prl-tools/default.nix @@ -20,6 +20,7 @@ netcat, timetrap, util-linux, + wayland, }: let @@ -29,6 +30,7 @@ let libPath = lib.concatStringsSep ":" [ "${glib.out}/lib" "${xorg.libXrandr}/lib" + "${wayland.out}/lib" ]; scriptPath = lib.concatStringsSep ":" [ "${bash}/bin"