mongodb: Enable parallel building

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