about summary refs log tree commit diff
path: root/pkgs/tools/security/john
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-12-30 00:05:12 -0800
committerWilliam A. Kennington III <william@wkennington.com>2014-12-30 00:05:12 -0800
commitafeef240dce28f1de4c6d5a29ce5c23e562c53a4 (patch)
tree1d550d4d7f425390564bb4df19ae5621f4854a3e /pkgs/tools/security/john
parent18892629c2109fa96d6fd0192b2809d710262260 (diff)
kerberos: Use default kerberos instead of krb5
Diffstat (limited to 'pkgs/tools/security/john')
-rw-r--r--pkgs/tools/security/john/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix
index fb1131b5f98b7..4ef9b8f65b6bd 100644
--- a/pkgs/tools/security/john/default.nix
+++ b/pkgs/tools/security/john/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchgit, openssl, nss, nspr, krb5, gmp, zlib, libpcap, re2 }:
+{ stdenv, fetchgit, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 }:
 
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "JohnTheRipper-${version}";
   version = "8a3e3c1d";
-  buildInputs = [ openssl nss nspr krb5 gmp zlib libpcap re2 ];
+  buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ];
   NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1";
   preConfigure = ''cd src'';
   installPhase = ''