about summary refs log tree commit diff
path: root/pkgs/tools/security/john/default.nix
blob: 993a3a3bb85b5c3fed3ea250eaf513a1f1c6ba95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 }:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "john-${version}";
  version = "1.8.0-jumbo-1";

  src = fetchurl {
    url = "http://www.openwall.com/john/j/${name}.tar.xz";
    sha256 = "08q92sfdvkz47rx6qjn7qv57cmlpy7i7rgddapq5384mb413vjds";
  };

  buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ];

  NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1";

  preConfigure = "cd src";
  configureFlags = [ "--disable-native-macro" ];

  installPhase = ''
    mkdir -p "$out/share/john"
    mkdir -p "$out/bin"
    cp -R ../run/* "$out/share/john"
    ln -s "$out/share/john/john" "$out/bin/john"
  '';

  meta = {
    description = "John the Ripper password cracker";
    license = licenses.gpl2;
    homepage = https://github.com/magnumripper/JohnTheRipper/;
    maintainers = with maintainers; [ offline ];
    platforms = with platforms; unix;
  };
}