webkitgtk24: build in parallel until #18312

(cherry picked from commit 2ef4e9e9d5c754fe091ec5087b885f2be98fb3a7)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
Domen Kožar 2016-09-05 17:43:38 +02:00
parent 05c132486d
commit d2275f4b04

@ -47,6 +47,8 @@ stdenv.mkDerivation rec {
configureFlags = with stdenv.lib; [
"--disable-geolocation"
"--disable-jit"
# needed for parallel building
"--enable-dependency-tracking"
(optionalString enableIntrospection "--enable-introspection")
] ++ optional withGtk2 [
"--with-gtk=2.0"
@ -86,7 +88,6 @@ stdenv.mkDerivation rec {
(if withGtk2 then gtk2 else gtk3)
];
# Still fails with transient errors in version 2.4.9.
enableParallelBuilding = false;
enableParallelBuilding = true;
}