2019-09-02 22:37:31 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkgconfig
|
|
|
|
, cmake
|
|
|
|
, zlib
|
|
|
|
, fetchpatch
|
|
|
|
, dbus
|
|
|
|
, networkmanager
|
|
|
|
, spidermonkey_38
|
|
|
|
, pcre
|
2019-09-02 22:39:24 +02:00
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, glib
|
|
|
|
, makeWrapper
|
2019-09-02 22:37:31 +02:00
|
|
|
, python2
|
|
|
|
, python3
|
|
|
|
, SystemConfiguration
|
|
|
|
, CoreFoundation
|
|
|
|
, JavaScriptCore
|
|
|
|
}:
|
2009-06-03 14:28:25 +02:00
|
|
|
|
2011-04-15 06:58:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libproxy";
|
2017-09-25 16:20:53 +02:00
|
|
|
version = "0.4.15";
|
2016-11-10 23:32:03 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libproxy";
|
|
|
|
repo = "libproxy";
|
|
|
|
rev = version;
|
2017-09-25 16:20:53 +02:00
|
|
|
sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs";
|
2009-06-03 14:28:25 +02:00
|
|
|
};
|
2013-04-03 15:13:11 +02:00
|
|
|
|
2019-09-02 22:22:12 +02:00
|
|
|
outputs = [ "out" "dev" "py2" "py3" ];
|
2015-10-06 12:28:29 +02:00
|
|
|
|
2019-09-02 22:37:31 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
cmake
|
2019-09-02 22:39:24 +02:00
|
|
|
makeWrapper
|
2019-09-02 22:37:31 +02:00
|
|
|
];
|
2016-11-23 15:58:19 +01:00
|
|
|
|
2019-09-02 22:37:31 +02:00
|
|
|
buildInputs = [
|
|
|
|
pcre
|
|
|
|
python2
|
|
|
|
python3
|
|
|
|
zlib
|
|
|
|
] ++ (if stdenv.hostPlatform.isDarwin then [
|
|
|
|
SystemConfiguration
|
|
|
|
CoreFoundation
|
|
|
|
JavaScriptCore
|
|
|
|
] else [
|
2019-09-02 22:39:24 +02:00
|
|
|
glib
|
2019-09-02 22:37:31 +02:00
|
|
|
spidermonkey_38
|
|
|
|
dbus
|
|
|
|
networkmanager
|
|
|
|
]);
|
2017-04-04 13:37:55 +02:00
|
|
|
|
2019-09-02 22:22:12 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DWITH_MOZJS=ON"
|
|
|
|
"-DPYTHON2_SITEPKG_DIR=${placeholder "py2"}/${python2.sitePackages}"
|
|
|
|
"-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}"
|
|
|
|
];
|
2016-08-02 18:06:29 +02:00
|
|
|
|
2019-09-02 22:37:31 +02:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [
|
2019-03-10 18:14:14 +01:00
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/libproxy/libproxy/commit/44158f03f8522116758d335688ed840dfcb50ac8.patch";
|
|
|
|
sha256 = "0axfvb6j7gcys6fkwi9dkn006imhvm3kqr83gpwban8419n0q5v1";
|
2019-09-02 22:37:31 +02:00
|
|
|
})
|
|
|
|
];
|
2019-03-10 18:14:14 +01:00
|
|
|
|
2019-09-02 22:39:24 +02:00
|
|
|
postFixup = ''
|
|
|
|
# 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 05:20:18 +02:00
|
|
|
doCheck = false; # fails 1 out of 10 tests
|
|
|
|
|
2016-11-10 23:32:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-02-09 16:32:28 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-11-10 23:32:03 +01:00
|
|
|
license = licenses.lgpl21;
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://libproxy.github.io/libproxy/;
|
2016-11-10 23:32:03 +01:00
|
|
|
description = "A library that provides automatic proxy configuration management";
|
2016-08-02 18:06:29 +02:00
|
|
|
};
|
2009-06-03 14:28:25 +02:00
|
|
|
}
|