2016-11-23 15:58:19 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
|
2017-09-25 16:20:53 +02:00
|
|
|
, dbus, networkmanager, spidermonkey_38, pcre, python2, python3 }:
|
2009-06-03 14:28:25 +02:00
|
|
|
|
2011-04-15 06:58:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-10 23:32:03 +01:00
|
|
|
name = "libproxy-${version}";
|
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
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
|
2015-10-06 12:28:29 +02:00
|
|
|
|
2013-04-03 15:13:11 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2016-11-23 15:58:19 +01:00
|
|
|
|
2017-09-25 16:20:53 +02:00
|
|
|
buildInputs = [ dbus networkmanager spidermonkey_38 pcre python2 python3 ];
|
2017-04-04 13:37:55 +02:00
|
|
|
|
2017-09-25 16:20:53 +02:00
|
|
|
preConfigure = ''
|
|
|
|
cmakeFlagsArray+=(
|
|
|
|
"-DWITH_MOZJS=ON"
|
|
|
|
"-DPYTHON2_SITEPKG_DIR=$out/${python2.sitePackages}"
|
|
|
|
"-DPYTHON3_SITEPKG_DIR=$out/${python3.sitePackages}"
|
|
|
|
)
|
|
|
|
'';
|
2016-08-02 18:06:29 +02:00
|
|
|
|
2016-11-10 23:32:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
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
|
|
|
}
|