From 0a042c46a1dbda19746d1274b22e441882072ecf Mon Sep 17 00:00:00 2001 From: Jennifer Graul Date: Thu, 13 Nov 2025 15:02:21 +0100 Subject: [PATCH] nxwitness-client: fix build It seems like qtwayland 6.10 does not provide libQt6WaylandEglClientHwIntegration.so.6 anymore, so we now ignore the dependency, because the application seems to work fine without it (tested on wayland). --- pkgs/by-name/nx/nxwitness-client/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/nx/nxwitness-client/package.nix b/pkgs/by-name/nx/nxwitness-client/package.nix index 741eb0f8dc7b..3087b24c8ac0 100644 --- a/pkgs/by-name/nx/nxwitness-client/package.nix +++ b/pkgs/by-name/nx/nxwitness-client/package.nix @@ -75,6 +75,10 @@ let dpkg ]; + autoPatchelfIgnoreMissingDeps = [ + "libQt6WaylandEglClientHwIntegration.so.6" + ]; + dontUnpack = true; dontWrapQtApps = true;