summary refs log tree commit diff
diff options
context:
space:
mode:
authorGabriel Volpe <volpegabriel@gmail.com>2022-06-30 18:57:36 +0200
committerGitHub <noreply@github.com>2022-06-30 18:57:36 +0200
commite1ea5220b49449c16cd04fa47047b19ecdb39036 (patch)
treee4bc9e0306cf218966bd0210c76db41d63c25015
parent8937eaacc0b2bd5a365943fd959adb3cad56ad73 (diff)
downloadnixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.tar
nixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.tar.gz
nixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.tar.bz2
nixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.tar.lz
nixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.tar.xz
nixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.tar.zst
nixpkgs-e1ea5220b49449c16cd04fa47047b19ecdb39036.zip
protonvpn-gui: add glib-networking dependency
This dependency is needed for the initial login captcha. Without it, it is impossible to log in.
-rw-r--r--pkgs/applications/networking/protonvpn-gui/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/networking/protonvpn-gui/default.nix b/pkgs/applications/networking/protonvpn-gui/default.nix
index 46ac403b0d8..ef128932f7c 100644
--- a/pkgs/applications/networking/protonvpn-gui/default.nix
+++ b/pkgs/applications/networking/protonvpn-gui/default.nix
@@ -3,6 +3,7 @@
 , fetchFromGitHub
 , wrapGAppsHook
 , gdk-pixbuf
+, glib-networking
 , gobject-introspection
 , imagemagick
 , librsvg
@@ -34,6 +35,7 @@ buildPythonApplication rec {
   ];
 
   propagatedBuildInputs = [
+    glib-networking # needed for the login captcha
     protonvpn-nm-lib
     psutil
   ];