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
'';
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
'';
0
0
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";