add defaultConfig for mysql ruby gem

The mysql gem needs the same libraries as the mysql2 gem.
This commit is contained in:
Ryan Mulligan 2016-11-03 17:19:25 -07:00 committed by GitHub
parent 5ee9bab301
commit 936db422f9

View File

@ -89,6 +89,10 @@ in
msgpack = attrs: {
buildInputs = [ libmsgpack ];
};
mysql = attrs: {
buildInputs = [ mysql.lib zlib openssl ];
};
mysql2 = attrs: {
buildInputs = [ mysql.lib zlib openssl ];