tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
mongodb: Enable parallel building
William A. Kennington III
10 years ago
b461df24
1e4e684f
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
nosql
mongodb
default.nix
+4
-2
pkgs/servers/nosql/mongodb/default.nix
···
49
49
'';
50
50
51
51
buildPhase = ''
52
52
-
scons core --release ${other-args}
52
52
+
scons -j $NIX_BUILD_CORES core --release ${other-args}
53
53
'';
54
54
55
55
installPhase = ''
56
56
mkdir -p $out/lib
57
57
-
scons install --release --prefix=$out ${other-args}
57
57
+
scons -j $NIX_BUILD_CORES install --release --prefix=$out ${other-args}
58
58
'';
59
59
+
60
60
+
enableParallelBuilding = true;
59
61
60
62
meta = {
61
63
description = "a scalable, high-performance, open source NoSQL database";