nixpkgs/pkgs/development/libraries/libproxy/default.nix

95 lines
2.3 KiB
Nix
Raw Normal View History

2019-09-02 22:37:31 +02:00
{ stdenv
, fetchFromGitHub
, pkgconfig
, cmake
, zlib
, fetchpatch
, dbus
, networkmanager
2019-09-30 17:02:01 +02:00
, spidermonkey_60
2019-09-02 22:37:31 +02:00
, pcre
, gsettings-desktop-schemas
, glib
, makeWrapper
2019-09-02 22:37:31 +02:00
, python3
, SystemConfiguration
, CoreFoundation
, JavaScriptCore
}:
stdenv.mkDerivation rec {
pname = "libproxy";
version = "0.4.15";
2016-11-10 23:32:03 +01:00
src = fetchFromGitHub {
owner = "libproxy";
repo = "libproxy";
rev = version;
sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs";
};
outputs = [ "out" "dev" "py3" ];
2019-09-02 22:37:31 +02:00
nativeBuildInputs = [
pkgconfig
cmake
makeWrapper
2019-09-02 22:37:31 +02:00
];
2019-09-02 22:37:31 +02:00
buildInputs = [
pcre
python3
zlib
] ++ (if stdenv.hostPlatform.isDarwin then [
SystemConfiguration
CoreFoundation
JavaScriptCore
] else [
glib
2019-09-30 17:02:01 +02:00
spidermonkey_60
2019-09-02 22:37:31 +02:00
dbus
networkmanager
]);
2019-09-02 22:22:12 +02:00
cmakeFlags = [
"-DWITH_MOZJS=ON"
"-DWITH_PYTHON2=OFF"
2019-09-02 22:22:12 +02:00
"-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}"
];
2019-09-30 17:02:01 +02:00
patches = [
# Make build with spidermonkey_60
(fetchpatch {
url = "https://github.com/libproxy/libproxy/pull/86.patch";
sha256 = "17c06ilinrnzr7xnnmw9pc6zrncyaxcdd6r6k1ah5p156skbykfs";
})
(fetchpatch {
url = "https://github.com/libproxy/libproxy/pull/87.patch";
sha256 = "0sagzfwm16f33inbkwsp88w9wmrd034rjmw0y8d122f7k1qfx6zc";
})
(fetchpatch {
url = "https://github.com/libproxy/libproxy/pull/95.patch";
sha256 = "18vyr6wlis9zfwml86606jpgb9mss01l9aj31iiciml8p857aixi";
})
] ++ 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
postFixup = stdenv.lib.optionalString stdenv.isLinux ''
# 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}"
'';
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;
homepage = "http://libproxy.github.io/libproxy/";
2016-11-10 23:32:03 +01:00
description = "A library that provides automatic proxy configuration management";
};
}