We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9537bd5 commit 15ffdcdCopy full SHA for 15ffdcd
pkgs/applications/networking/protonvpn-gui/default.nix
@@ -5,6 +5,7 @@
5
gobject-introspection,
6
setuptools,
7
wrapGAppsHook3,
8
+ libnotify,
9
dbus-python,
10
packaging,
11
proton-core,
@@ -37,12 +38,16 @@ buildPythonApplication rec {
37
38
wrapGAppsHook3
39
];
40
- buildInputs = lib.optionals withIndicator [
41
- # Adds AppIndicator3 namespace
42
- libappindicator-gtk3
43
- # Adds AyatanaAppIndicator3 namespace
44
- libayatana-appindicator
45
- ];
+ buildInputs =
+ [
+ libnotify # gir typelib is used
+ ]
+ ++ lib.optionals withIndicator [
46
+ # Adds AppIndicator3 namespace
47
+ libappindicator-gtk3
48
+ # Adds AyatanaAppIndicator3 namespace
49
+ libayatana-appindicator
50
+ ];
51
52
build-system = [
53
setuptools
0 commit comments