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

73 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-09-02 21:37:31 +01:00
, fetchFromGitHub
, pkg-config
2019-09-02 21:37:31 +01:00
, cmake
, zlib
, dbus
, networkmanager
2021-02-13 19:23:53 +00:00
, spidermonkey_68
2019-09-02 21:37:31 +01:00
, pcre
, gsettings-desktop-schemas
, glib
, makeWrapper
2019-09-02 21:37:31 +01:00
, python3
, SystemConfiguration
, CoreFoundation
, JavaScriptCore
}:
stdenv.mkDerivation rec {
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";
};
outputs = [ "out" "dev" "py3" ];
2019-09-02 21:37:31 +01:00
nativeBuildInputs = [
pkg-config
2019-09-02 21:37:31 +01:00
cmake
makeWrapper
2019-09-02 21:37:31 +01:00
];
2019-09-02 21:37:31 +01:00
buildInputs = [
pcre
python3
zlib
] ++ (if stdenv.hostPlatform.isDarwin then [
SystemConfiguration
CoreFoundation
JavaScriptCore
] else [
glib
2021-02-13 19:23:53 +00:00
spidermonkey_68
2019-09-02 21:37:31 +01:00
dbus
networkmanager
]);
2019-09-02 21:22:12 +01:00
cmakeFlags = [
"-DWITH_MOZJS=ON"
"-DWITH_PYTHON2=OFF"
2019-09-02 21:22:12 +01:00
"-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}"
];
postFixup = 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
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;
homepage = "http://libproxy.github.io/libproxy/";
2016-11-10 22:32:03 +00:00
description = "A library that provides automatic proxy configuration management";
};
}