opensnitch-ui: Add wayland support

Without this dependency opensnitch needs to be run with
QT_QPA_PLATFORM=xcb override in Wayland environments.
This commit is contained in:
Stanislav Ochotnický 2023-07-08 14:37:55 +02:00 committed by Artturin
parent a0930d1a13
commit 9fc5a391e4

View File

@ -1,5 +1,6 @@
{ python3Packages
, fetchFromGitHub
, qtwayland
, wrapQtAppsHook
, lib
}:
@ -25,6 +26,10 @@ python3Packages.buildPythonApplication rec {
wrapQtAppsHook
];
buildInputs = [
qtwayland
];
propagatedBuildInputs = with python3Packages; [
grpcio-tools
pyqt5