about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2019-08-17 21:24:29 +0300
committerIzorkin <izorkin@elven.pw>2019-09-09 15:55:34 +0300
commit329a88efa78126ae7413807ce58000eab49e82d9 (patch)
tree432995643b4784e5eefdd253ace54a2566eebd7c /pkgs/tools/security
parentcfb909229dd4c82441ddbf6d904def2057b62678 (diff)
downloadnixlib-329a88efa78126ae7413807ce58000eab49e82d9.tar
nixlib-329a88efa78126ae7413807ce58000eab49e82d9.tar.gz
nixlib-329a88efa78126ae7413807ce58000eab49e82d9.tar.bz2
nixlib-329a88efa78126ae7413807ce58000eab49e82d9.tar.lz
nixlib-329a88efa78126ae7413807ce58000eab49e82d9.tar.xz
nixlib-329a88efa78126ae7413807ce58000eab49e82d9.tar.zst
nixlib-329a88efa78126ae7413807ce58000eab49e82d9.zip
treewide: replace mysql.connector-c to libmysqlclient
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/thc-hydra/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/thc-hydra/default.nix b/pkgs/tools/security/thc-hydra/default.nix
index 252d73b479b6..57deaaf0498c 100644
--- a/pkgs/tools/security/thc-hydra/default.nix
+++ b/pkgs/tools/security/thc-hydra/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, zlib, openssl, ncurses, libidn, pcre, libssh, mysql, postgresql
+{ stdenv, lib, fetchurl, zlib, openssl, ncurses, libidn, pcre, libssh, libmysqlclient, postgresql
 , withGUI ? false, makeWrapper, pkgconfig, gtk2 }:
 
 let
@@ -23,7 +23,7 @@ in stdenv.mkDerivation rec {
   '';
 
   nativeBuildInputs = lib.optionals withGUI [ pkgconfig makeWrapper ];
-  buildInputs = [ zlib openssl ncurses libidn pcre libssh mysql.connector-c postgresql ]
+  buildInputs = [ zlib openssl ncurses libidn pcre libssh libmysqlclient postgresql ]
                 ++ lib.optional withGUI gtk2;
 
   postInstall = lib.optionalString withGUI ''