protonvpn-gui: remove networkmanager, add gdk-pixbuf and librsvg

As protonvpn-nm-lib needs networkmanager to work properly, it is not needed on protonvpn-gui. Also adding gdk-pixbuf and librsvg to handle svg images (#174171)
This commit is contained in:
P. R. d. O 2022-05-27 08:08:50 -06:00
parent 2361dc9f4a
commit 991dbd65f1
No known key found for this signature in database
GPG key ID: 7B0FF33FF90110C7

View file

@ -2,9 +2,10 @@
, buildPythonApplication
, fetchFromGitHub
, wrapGAppsHook
, gdk-pixbuf
, gobject-introspection
, imagemagick
, networkmanager
, librsvg
, pango
, webkitgtk
# Python libs
@ -26,6 +27,7 @@ buildPythonApplication rec {
};
nativeBuildInputs = [
gdk-pixbuf
gobject-introspection
imagemagick
wrapGAppsHook
@ -39,7 +41,7 @@ buildPythonApplication rec {
buildInputs = [
# To avoid enabling strictDeps = false (#56943)
gobject-introspection
networkmanager
librsvg
pango
webkitgtk
] ++ lib.optionals withIndicator [ libappindicator-gtk3 ];