aboutsummaryrefslogtreecommitdiff
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
parent5eded456d013b579dbb46005b4d3f8cd8119b1da (diff)
mysql
-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 aa36901e46b..14fc89e9170 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;