nixpkgs/pkgs/tools/security/thc-hydra/default.nix

30 lines
1008 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, openssl, libidn, ncurses, pcre, libssh, postgresql92 }:
with stdenv.lib;
stdenv.mkDerivation rec {
2014-10-13 17:58:07 +04:00
name = "thc-hydra-${version}";
version = "7.5";
src = fetchurl {
2014-10-13 17:58:07 +04:00
url = "http://www.thc.org/releases/hydra-${version}.tar.gz";
sha256 = "1dhavbn2mcm6c2c1qw29ipbpmczax3vhhlxzwn49c8cq471yg4vj";
};
preConfigure = ''
substituteInPlace configure --replace "\$LIBDIRS" "${openssl.out}/lib ${pcre.out}/lib ${libssh.out}/lib ${postgresql92.lib}/lib"
substituteInPlace configure --replace "\$INCDIRS" "${openssl.dev}/include ${pcre.dev}/include ${libssh.dev}/include ${postgresql92}/include"
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl libidn ncurses pcre libssh ];
meta = {
description = "A very fast network logon cracker which support many different services";
license = licenses.agpl3;
homepage = https://www.thc.org/thc-hydra/;
maintainers = with maintainers; [offline];
platforms = platforms.unix;
};
}