mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
libproxy: add networkmanager and PAC support
This commit is contained in:
parent
8e72dc3d46
commit
9b4e170f72
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue