mongodb: Enable parallel building

+4 -2
+4 -2
pkgs/servers/nosql/mongodb/default.nix
··· 49 49 ''; 50 50 51 51 buildPhase = '' 52 - scons core --release ${other-args} 52 + scons -j $NIX_BUILD_CORES core --release ${other-args} 53 53 ''; 54 54 55 55 installPhase = '' 56 56 mkdir -p $out/lib 57 - scons install --release --prefix=$out ${other-args} 57 + scons -j $NIX_BUILD_CORES install --release --prefix=$out ${other-args} 58 58 ''; 59 + 60 + enableParallelBuilding = true; 59 61 60 62 meta = { 61 63 description = "a scalable, high-performance, open source NoSQL database";