summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-11-23 17:58:19 +0300
committerNikolay Amiantov <ab@fmap.me>2016-11-24 01:17:55 +0300
commit9b4e170f72db7d7239249a7048fe9b0d1e17a728 (patch)
tree615bb512603aec31f2146833d8827115e12b85f9
parent8e72dc3d468bd7c6dbdecf73c315ba90ef6c3926 (diff)
downloadnixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.tar
nixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.tar.gz
nixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.tar.bz2
nixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.tar.lz
nixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.tar.xz
nixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.tar.zst
nixpkgs-9b4e170f72db7d7239249a7048fe9b0d1e17a728.zip
libproxy: add networkmanager and PAC support
-rw-r--r--pkgs/development/libraries/libproxy/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libproxy/default.nix b/pkgs/development/libraries/libproxy/default.nix
index 36c486ce53d..97929d29b37 100644
--- a/pkgs/development/libraries/libproxy/default.nix
+++ b/pkgs/development/libraries/libproxy/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchFromGitHub, pkgconfig, cmake, zlib, glib }:
+{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
+, dbus, networkmanager, spidermonkey_1_8_5 }:
 
 stdenv.mkDerivation rec {
   name = "libproxy-${version}";
@@ -14,9 +15,8 @@ stdenv.mkDerivation rec {
   outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
 
   nativeBuildInputs = [ pkgconfig cmake ];
-  propagatedBuildInputs = [ zlib ]
-    # now some optional deps, but many more are possible
-    ++ [ glib ];
+
+  buildInputs = [ dbus networkmanager spidermonkey_1_8_5 ];
 
   meta = with stdenv.lib; {
     platforms = platforms.linux;