Skip to content

Commit

Permalink
libproxy: 0.4.13 -> 0.4.15
Browse files Browse the repository at this point in the history
reduces closure size from ~200mb to ~100mb

fixes #29775
  • Loading branch information
Mic92 committed Sep 25, 2017
1 parent 756698f commit 30c3805
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pkgs/development/libraries/libproxy/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
, dbus, networkmanager, webkitgtk216x, pcre, python2 }:
, dbus, networkmanager, spidermonkey_38, pcre, python2, python3 }:

stdenv.mkDerivation rec {
name = "libproxy-${version}";
version = "0.4.13";
version = "0.4.15";

src = fetchFromGitHub {
owner = "libproxy";
repo = "libproxy";
rev = version;
sha256 = "0yg4wr44ync6x3p107ic00m1l04xqhni9jn1vzvkw3nfjd0k6f92";
sha256 = "10swd3x576pinx33iwsbd4h15fbh2snmfxzcmab4c56nb08qlbrs";
};

outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs

nativeBuildInputs = [ pkgconfig cmake ];

buildInputs = [ dbus networkmanager webkitgtk216x pcre ];
buildInputs = [ dbus networkmanager spidermonkey_38 pcre python2 python3 ];

cmakeFlags = [
"-DWITH_WEBKIT3=ON"
"-DWITH_MOZJS=OFF"
"-DPYTHON_SITEPKG_DIR=$(out)/${python2.sitePackages}"
];
preConfigure = ''
cmakeFlagsArray+=(
"-DWITH_MOZJS=ON"
"-DPYTHON2_SITEPKG_DIR=$out/${python2.sitePackages}"
"-DPYTHON3_SITEPKG_DIR=$out/${python3.sitePackages}"
)
'';

meta = with stdenv.lib; {
platforms = platforms.linux;
Expand Down

0 comments on commit 30c3805

Please sign in to comment.