2019-03-10 17:14:14 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, cmake, zlib, fetchpatch
|
2018-02-09 15:32:28 +00:00
|
|
|
, dbus, networkmanager, spidermonkey_38, pcre, python2, python3
|
|
|
|
, SystemConfiguration, CoreFoundation, JavaScriptCore }:
|
2009-06-03 13:28:25 +01:00
|
|
|
|
2011-04-15 05:58:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-10 22:32:03 +00:00
|
|
|
name = "libproxy-${version}";
|
2017-09-25 15:20:53 +01:00
|
|
|
version = "0.4.15";
|
2016-11-10 22:32:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libproxy";
|
|
|
|
repo = "libproxy";
|
|
|
|
rev = version;
|
2017-09-25 15:20:53 +01:00
|
|
|
sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs";
|
2009-06-03 13:28:25 +01:00
|
|
|
};
|
2013-04-03 14:13:11 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
|
2015-10-06 11:28:29 +01:00
|
|
|
|
2013-04-03 14:13:11 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2016-11-23 14:58:19 +00:00
|
|
|
|
2018-02-09 15:32:28 +00:00
|
|
|
buildInputs = [ pcre python2 python3 zlib ]
|
|
|
|
++ (if stdenv.hostPlatform.isDarwin
|
|
|
|
then [ SystemConfiguration CoreFoundation JavaScriptCore ]
|
|
|
|
else [ spidermonkey_38 dbus networkmanager ]);
|
2017-04-04 12:37:55 +01:00
|
|
|
|
2017-09-25 15:20:53 +01:00
|
|
|
preConfigure = ''
|
|
|
|
cmakeFlagsArray+=(
|
|
|
|
"-DWITH_MOZJS=ON"
|
|
|
|
"-DPYTHON2_SITEPKG_DIR=$out/${python2.sitePackages}"
|
|
|
|
"-DPYTHON3_SITEPKG_DIR=$out/${python3.sitePackages}"
|
|
|
|
)
|
|
|
|
'';
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2019-03-10 17:14:14 +00:00
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/libproxy/libproxy/commit/44158f03f8522116758d335688ed840dfcb50ac8.patch";
|
|
|
|
sha256 = "0axfvb6j7gcys6fkwi9dkn006imhvm3kqr83gpwban8419n0q5v1";
|
|
|
|
});
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails 1 out of 10 tests
|
|
|
|
|
2016-11-10 22:32:03 +00:00
|
|
|
meta = with stdenv.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;
|
2017-08-01 21:03:30 +01: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 17:06:29 +01:00
|
|
|
};
|
2009-06-03 13:28:25 +01:00
|
|
|
}
|