summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-10-04 08:27:51 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-10-04 08:35:03 +0200
commit1de3682f98278e6ca8286571f5c8704a3a19d520 (patch)
tree6b59aefa2efb21153db4652ecf13746f7454c014
parentd4c56cef4388845fef38cdfef6cf0c666b23849b (diff)
downloadnixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.tar
nixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.tar.gz
nixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.tar.bz2
nixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.tar.lz
nixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.tar.xz
nixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.tar.zst
nixpkgs-1de3682f98278e6ca8286571f5c8704a3a19d520.zip
mysql55: Enable parallel building.
In order to extend the lifes of keyboards, monitors, mice and other hardware in
range of impatient people, this should shorten build times a bit on multicore
systems. And of course keeps blood pressure at low rates so cholerics may live
longer. Whether the latter is good or bad is up to the readers choice and
imagination.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--pkgs/servers/sql/mysql55/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/sql/mysql55/default.nix b/pkgs/servers/sql/mysql55/default.nix
index 5025720d62b..a5f588f747d 100644
--- a/pkgs/servers/sql/mysql55/default.nix
+++ b/pkgs/servers/sql/mysql55/default.nix
@@ -17,6 +17,8 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ cmake bison ncurses openssl readline zlib ];
 
+  enableParallelBuilding = true;
+
   cmakeFlags = "-DWITH_SSL=yes -DWITH_READLINE=yes -DWITH_EMBEDDED_SERVER=yes -DWITH_ZLIB=yes -DINSTALL_SCRIPTDIR=bin -DHAVE_IPV6=yes";
   
   NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";