mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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).
This commit is contained in:
parent
74deced24d
commit
061e73c959
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue