mullvad-vpn: add libappindicator dependency

Adding libappindicator as a runtime dependency allows the Electron-based gui app
to have an appindicator in desktop environments that support them (eg,
Gnome with the appindicator support extension).
gstqt5
Constantine Glen Evans 2020-03-28 13:45:23 -07:00
parent 74deced24d
commit 061e73c959
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ stdenv, makeWrapper, fetchurl, dpkg
, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype
, gdk-pixbuf, glib, gnome2, pango, nspr, nss, gtk3
, xorg, autoPatchelfHook, systemd, libnotify
, xorg, autoPatchelfHook, systemd, libnotify, libappindicator
}:
let deps = [
@ -18,6 +18,7 @@ let deps = [
gnome2.GConf
pango
gtk3
libappindicator
libnotify
xorg.libX11
xorg.libXScrnSaver
@ -59,7 +60,7 @@ stdenv.mkDerivation rec {
unpackPhase = "dpkg-deb -x $src .";
runtimeDependencies = [ systemd.lib libnotify ];
runtimeDependencies = [ systemd.lib libnotify libappindicator ];
installPhase = ''
runHook preInstall