mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
60 lines
1.8 KiB
Nix
60 lines
1.8 KiB
Nix
{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2
|
|
, writeText, gcc
|
|
}:
|
|
|
|
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";
|
|
};
|
|
|
|
patches = [ ./gcc5.patch ];
|
|
|
|
postPatch = ''
|
|
sed -ri -e '
|
|
s!^(#define\s+CFG_[A-Z]+_NAME\s+).*/!\1"'"$out"'/etc/john/!
|
|
/^#define\s+JOHN_SYSTEMWIDE/s!/usr!'"$out"'!
|
|
' src/params.h
|
|
sed -ri -e '/^\.include/ {
|
|
s!\$JOHN!'"$out"'/etc/john!
|
|
s!^(\.include\s*)<([^./]+\.conf)>!\1"'"$out"'/etc/john/\2"!
|
|
}' run/*.conf
|
|
'';
|
|
|
|
preConfigure = "cd src";
|
|
configureFlags = [ "--disable-native-macro" ];
|
|
|
|
buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 gcc ];
|
|
|
|
# gcc -DAC_BUILT -Wall vncpcap2john.o memdbg.o -g -lpcap -fopenmp -o ../run/vncpcap2john
|
|
# gcc: error: memdbg.o: No such file or directory
|
|
enableParallelBuilding = false;
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/etc/john" "$out/share/john" "$out/share/doc/john"
|
|
find ../run -mindepth 1 -maxdepth 1 -type f -executable \
|
|
-exec "${stdenv.shell}" "${writeText "john-binary-install.sh" ''
|
|
filename="$(basename "$1")"
|
|
install -vD "$1" "$out/bin/''${filename%.*}"
|
|
''}" {} \;
|
|
cp -vt "$out/etc/john" ../run/*.conf
|
|
cp -vt "$out/share/john" ../run/*.chr ../run/password.lst
|
|
cp -vrt "$out/share/doc/john" ../doc/*
|
|
'';
|
|
|
|
meta = {
|
|
description = "John the Ripper password cracker";
|
|
license = licenses.gpl2;
|
|
homepage = https://github.com/magnumripper/JohnTheRipper/;
|
|
maintainers = with maintainers; [ offline ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|