mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
thc-hydra: include postgresql brute-force support
This commit is contained in:
parent
3ceb789c36
commit
1465d9321d
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, openssl, libidn, ncurses, pcre, libssh }:
|
||||
{ stdenv, fetchurl, openssl, libidn, ncurses, pcre, libssh, postgresql92 }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
|
@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace configure --replace "\$LIBDIRS" "${openssl}/lib ${pcre}/lib ${libssh}/lib"
|
||||
substituteInPlace configure --replace "\$INCDIRS" "${openssl}/include ${pcre}/include ${libssh}/include"
|
||||
substituteInPlace configure --replace "\$LIBDIRS" "${openssl}/lib ${pcre}/lib ${libssh}/lib ${postgresql92}/lib"
|
||||
substituteInPlace configure --replace "\$INCDIRS" "${openssl}/include ${pcre}/include ${libssh}/include ${postgresql92}/include"
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl libidn ncurses pcre libssh ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue