libproxy: Make JavaScript optional

This commit is contained in:
Zhaofeng Li 2021-06-11 03:15:30 +00:00
parent 16f69cc525
commit 0f236088ee

View file

@ -5,6 +5,7 @@
, zlib , zlib
, dbus , dbus
, networkmanager , networkmanager
, enableJavaScript ? stdenv.isDarwin || lib.meta.availableOn stdenv.hostPlatform spidermonkey_68
, spidermonkey_68 , spidermonkey_68
, pcre , pcre
, gsettings-desktop-schemas , gsettings-desktop-schemas
@ -16,7 +17,9 @@
, JavaScriptCore , JavaScriptCore
}: }:
stdenv.mkDerivation rec { let
jsRuntime = if stdenv.hostPlatform.isDarwin then JavaScriptCore else spidermonkey_68;
in stdenv.mkDerivation rec {
pname = "libproxy"; pname = "libproxy";
version = "0.4.17"; version = "0.4.17";
@ -39,22 +42,21 @@ stdenv.mkDerivation rec {
pcre pcre
python3 python3
zlib zlib
] ++ lib.optionals enableJavaScript [
jsRuntime
] ++ (if stdenv.hostPlatform.isDarwin then [ ] ++ (if stdenv.hostPlatform.isDarwin then [
SystemConfiguration SystemConfiguration
CoreFoundation CoreFoundation
JavaScriptCore
] else [ ] else [
glib glib
spidermonkey_68
dbus dbus
networkmanager networkmanager
]); ]);
cmakeFlags = [ cmakeFlags = [
"-DWITH_MOZJS=ON"
"-DWITH_PYTHON2=OFF" "-DWITH_PYTHON2=OFF"
"-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}" "-DPYTHON3_SITEPKG_DIR=${placeholder "py3"}/${python3.sitePackages}"
]; ] ++ lib.optional (enableJavaScript && !stdenv.hostPlatform.isDarwin) "-DWITH_MOZJS=ON";
postFixup = lib.optionalString stdenv.isLinux '' postFixup = lib.optionalString stdenv.isLinux ''
# config_gnome3 uses the helper to find GNOME proxy settings # config_gnome3 uses the helper to find GNOME proxy settings