libproxy: 0.4.13 -> 0.4.15

reduces closure size from ~200mb to ~100mb

fixes #29775
This commit is contained in:
Joerg Thalheim 2017-09-25 15:20:53 +01:00
parent 756698f0a7
commit 30c380556c
1 changed files with 11 additions and 9 deletions

View File

@ -1,28 +1,30 @@
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake { stdenv, lib, fetchFromGitHub, pkgconfig, cmake
, dbus, networkmanager, webkitgtk216x, pcre, python2 }: , dbus, networkmanager, spidermonkey_38, pcre, python2, python3 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libproxy-${version}"; name = "libproxy-${version}";
version = "0.4.13"; version = "0.4.15";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "libproxy"; owner = "libproxy";
repo = "libproxy"; repo = "libproxy";
rev = version; rev = version;
sha256 = "0yg4wr44ync6x3p107ic00m1l04xqhni9jn1vzvkw3nfjd0k6f92"; sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs";
}; };
outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
nativeBuildInputs = [ pkgconfig cmake ]; nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ dbus networkmanager webkitgtk216x pcre ]; buildInputs = [ dbus networkmanager spidermonkey_38 pcre python2 python3 ];
cmakeFlags = [ preConfigure = ''
"-DWITH_WEBKIT3=ON" cmakeFlagsArray+=(
"-DWITH_MOZJS=OFF" "-DWITH_MOZJS=ON"
"-DPYTHON_SITEPKG_DIR=$(out)/${python2.sitePackages}" "-DPYTHON2_SITEPKG_DIR=$out/${python2.sitePackages}"
]; "-DPYTHON3_SITEPKG_DIR=$out/${python3.sitePackages}"
)
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
platforms = platforms.linux; platforms = platforms.linux;