From 7fae9ae3c2a8a13fdcc158c3da96634ca5129192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 11 Nov 2024 21:26:03 +0100 Subject: [PATCH] pinentry-qt: fix caps lock warning This fixes the following warning on plasma6: > CapsLockWatcher was compiled without support for unix > Checking for Caps Lock not possible on unsupported platform: "wayland" --- pkgs/tools/security/pinentry/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/security/pinentry/default.nix b/pkgs/tools/security/pinentry/default.nix index 7392d39a52f1..6845cb59c785 100644 --- a/pkgs/tools/security/pinentry/default.nix +++ b/pkgs/tools/security/pinentry/default.nix @@ -6,6 +6,7 @@ pkg-config, autoreconfHook, wrapGAppsHook3, + kdePackages, libgpg-error, libassuan, libsForQt5, @@ -49,6 +50,7 @@ let buildInputs = [ qt6.qtbase qt6.qtwayland + kdePackages.kguiaddons ]; nativeBuildInputs = [ qt6.wrapQtAppsHook ]; };