about summary refs log tree commit diff
path: root/pkgs/tools/security/john
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-10-13 04:39:48 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-10-13 04:42:40 +0200
commit37429a2c74a4dfb141e497a62e608f0dd00a0cb5 (patch)
treea34d081738170c56f9b993c168ebd0d422ee19b3 /pkgs/tools/security/john
parent902bcf1422ecabb6efa771505ba5b6b3c76254c8 (diff)
john: Enable parallel building by default.
I've built this a lot of times on different machines without getting
compile errors, so I'd assume this to be safe. Of course, the compile
time is very small in comparison to bigger packages but it's still an
annoyance to wait for up to a few minutes, especially during
development.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/tools/security/john')
-rw-r--r--pkgs/tools/security/john/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix
index 90ef375b79b69..24a6782c20657 100644
--- a/pkgs/tools/security/john/default.nix
+++ b/pkgs/tools/security/john/default.nix
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
   configureFlags = [ "--disable-native-macro" ];
 
   buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ];
+  enableParallelBuilding = true;
 
   NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ];