about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2019-09-25 05:00:14 +0800
committerPeter Hoeg <peter@hoeg.com>2019-09-25 05:00:14 +0800
commita1c0e10564f9a6281e14d7a7279b8589521e2c48 (patch)
treeff4bf90e3b9703cf7e0c6d98870f9f0052489b6f /pkgs
parent5eded456d013b579dbb46005b4d3f8cd8119b1da (diff)
downloadnixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.tar
nixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.tar.gz
nixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.tar.bz2
nixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.tar.lz
nixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.tar.xz
nixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.tar.zst
nixlib-a1c0e10564f9a6281e14d7a7279b8589521e2c48.zip
mysql
Diffstat (limited to 'pkgs')
-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 aa36901e46b9..14fc89e91708 100644
--- a/pkgs/tools/security/thc-hydra/default.nix
+++ b/pkgs/tools/security/thc-hydra/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, zlib, openssl, ncurses, libidn, pcre, libssh, libmysqlclient, postgresql
+{ stdenv, lib, fetchFromGitHub, zlib, openssl, ncurses, libidn, pcre, libssh, mysql, postgresql
 , withGUI ? false, makeWrapper, pkgconfig, gtk2 }:
 
 stdenv.mkDerivation rec {
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = lib.optionals withGUI [ pkgconfig makeWrapper ];
 
   buildInputs = [
-    zlib openssl ncurses libidn pcre libssh libmysqlclient postgresql
+    zlib openssl ncurses libidn pcre libssh mysql.connector-c postgresql
   ] ++ lib.optional withGUI gtk2;
 
   enableParallelBuilding = true;