From de927db59d4e2802a1e490798abe9feee7a4bc2a Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 14:08:27 +0200 Subject: [PATCH] keepassxc: partial revert of #54525 Similar to pkgs.bitcoin, QT_PLUGIN_PATH is required in checkPhase to run the "testcli" test (ironically). --- pkgs/applications/misc/keepassx/community.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/keepassx/community.nix b/pkgs/applications/misc/keepassx/community.nix index 3a7342538482a..85dfda405b059 100644 --- a/pkgs/applications/misc/keepassx/community.nix +++ b/pkgs/applications/misc/keepassx/community.nix @@ -75,6 +75,7 @@ stdenv.mkDerivation rec { checkPhase = '' export LC_ALL="en_US.UTF-8" export QT_QPA_PLATFORM=offscreen + export QT_PLUGIN_PATH="${qtbase.bin}/${qtbase.qtPluginPrefix}" make test ARGS+="-E testgui --output-on-failure" '';