treewide: libmysql -> mysql.connector-c

This commit is contained in:
Robin Gloster
2017-12-29 02:18:35 +01:00
parent 445e3d7390
commit 6903ea6050
18 changed files with 55 additions and 53 deletions
+3 -3
View File
@@ -13,7 +13,7 @@
, withMemcached ? false
, hiredis
, withRedis ? false
, libmysql
, mysql
, withMysql ? false
, json_c
, withJson ? false
@@ -29,7 +29,7 @@ assert withPcap -> libpcap != null;
assert withCap -> libcap != null;
assert withMemcached -> libmemcached != null;
assert withRedis -> hiredis != null;
assert withMysql -> libmysql != null;
assert withMysql -> mysql != null;
assert withYubikey -> libyubikey != null;
assert withCollectd -> collectd != null;
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
++ optional withCap libcap
++ optional withMemcached libmemcached
++ optional withRedis hiredis
++ optional withMysql libmysql
++ optional withMysql mysql.connector-c
++ optional withJson json_c
++ optional withYubikey libyubikey
++ optional withCollectd collectd;