Skip to content

Commit 15ffdcd

Browse files

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

pkgs/applications/networking/protonvpn-gui/default.nix

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
gobject-introspection,
66
setuptools,
77
wrapGAppsHook3,
8+
libnotify,
89
dbus-python,
910
packaging,
1011
proton-core,
@@ -37,12 +38,16 @@ buildPythonApplication rec {
3738
wrapGAppsHook3
3839
];
3940

40-
buildInputs = lib.optionals withIndicator [
41-
# Adds AppIndicator3 namespace
42-
libappindicator-gtk3
43-
# Adds AyatanaAppIndicator3 namespace
44-
libayatana-appindicator
45-
];
41+
buildInputs =
42+
[
43+
libnotify # gir typelib is used
44+
]
45+
++ lib.optionals withIndicator [
46+
# Adds AppIndicator3 namespace
47+
libappindicator-gtk3
48+
# Adds AyatanaAppIndicator3 namespace
49+
libayatana-appindicator
50+
];
4651

4752
build-system = [
4853
setuptools

0 commit comments

Comments
 (0)