2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2019-09-02 20:37:31 +00:00
|
|
|
, fetchFromGitHub
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-09-02 20:37:31 +00:00
|
|
|
, cmake
|
|
|
|
, zlib
|
|
|
|
, dbus
|
|
|
|
, networkmanager
|
2021-06-11 03:15:30 +00:00
|
|
|
, enableJavaScript ? stdenv.isDarwin || lib.meta.availableOn stdenv.hostPlatform spidermonkey_68
|
2021-02-13 19:23:53 +00:00
|
|
|
, spidermonkey_68
|
2019-09-02 20:37:31 +00:00
|
|
|
, pcre
|
2019-09-02 20:39:24 +00:00
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, glib
|
|
|
|
, makeWrapper
|
2019-09-02 20:37:31 +00:00
|
|
|
, python3
|
|
|
|
, SystemConfiguration
|
|
|
|
, CoreFoundation
|
|
|
|
, JavaScriptCore
|
|
|
|
}:
|
2009-06-03 12:28:25 +00:00
|
|
|
|
2021-06-11 03:15:30 +00:00
|
|
|
let
|
|
|
|
jsRuntime = if stdenv.hostPlatform.isDarwin then JavaScriptCore else spidermonkey_68;
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libproxy";
|
2021-02-13 19:23:53 +00:00
|
|
|
version = "0.4.17";
|
2016-11-10 22:32:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libproxy";
|
|
|
|
repo = "libproxy";
|
|
|
|
rev = version;
|
2021-02-13 19:23:53 +00:00
|
|
|
sha256 = "0v8q4ln0pd5231kidpi8wpwh0chcjwcmawcki53czlpdrc09z96r";
|
2009-06-03 12:28:25 +00:00
|
|
|
};
|
2013-04-03 13:13:11 +00:00
|
|
|
|
2019-12-14 22:01:02 +00:00
|
|
|
outputs = [ "out" "dev" "py3" ];
|
2015-10-06 10:28:29 +00:00
|
|
|
|
2019-09-02 20:37:31 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-09-02 20:37:31 +00:00
|
|
|
cmake
|
2019-09-02 20:39:24 +00:00
|
|
|
makeWrapper
|
2019-09-02 20:37:31 +00:00
|
|
|
];
|
2016-11-23 14:58:19 +00:00
|
|
|
|
2019-09-02 20:37:31 +00:00
|
|
|
buildInputs = [
|
|
|
|
pcre
|
|
|
|
python3
|
|
|
|
zlib
|
2021-06-11 03:15:30 +00:00
|
|
|
] ++ lib.optionals enableJavaScript [
|
|
|
|
jsRuntime
|
2019-09-02 20:37:31 +00:00
|
|
|
] ++ (if stdenv.hostPlatform.isDarwin then [
|
|
|
|
SystemConfiguration
|
|
|
|
CoreFoundation
|
|
|
|
] else [
|
2019-09-02 20:39:24 +00:00
|
|
|
glib
|
2019-09-02 20:37:31 +00:00
|
|
|
dbus
|
|
|
|
networkmanager
|
|
|
|
]);
|
2017-04-04 11:37:55 +00:00
|
|
|
|
2019-09-02 20:22:12 +00:00
|
|
|
cmakeFlags = [
|
2019-12-14 22:01:02 +00:00
|
|
|
"-DWITH_PYTHON2=OFF"
|
2019-09-02 20:22:12 +00:00
|
|
|
"-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}"
|
2021-06-11 03:15:30 +00:00
|
|
|
] ++ lib.optional (enableJavaScript && !stdenv.hostPlatform.isDarwin) "-DWITH_MOZJS=ON";
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2019-09-02 20:39:24 +00:00
|
|
|
# config_gnome3 uses the helper to find GNOME proxy settings
|
|
|
|
wrapProgram $out/libexec/pxgsettings --prefix XDG_DATA_DIRS : "${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}"
|
|
|
|
'';
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # fails 1 out of 10 tests
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-02-09 15:32:28 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-11-10 22:32:03 +00:00
|
|
|
license = licenses.lgpl21;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://libproxy.github.io/libproxy/";
|
2016-11-10 22:32:03 +00:00
|
|
|
description = "A library that provides automatic proxy configuration management";
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2009-06-03 12:28:25 +00:00
|
|
|
}
|