mysql55: add passthrus for compatibility

This commit is contained in:
Robin Gloster 2017-12-28 14:07:15 +01:00
parent add8d3282e
commit e66d587aeb

View File

@ -3,7 +3,8 @@
# Note: zlib is not required; MySQL can use an internal zlib.
stdenv.mkDerivation rec {
let
self = stdenv.mkDerivation rec {
name = "mysql-${version}";
version = "5.5.58";
@ -59,11 +60,16 @@ stdenv.mkDerivation rec {
rm $out/share/man/man1/mysql-test-run.pl.1
'';
passthru.mysqlVersion = "5.5";
passthru = {
client = self;
connector-c = self;
server = self;
mysqlVersion = "5.5";
};
meta = {
homepage = http://www.mysql.com/;
description = "The world's most popular open source database";
platforms = stdenv.lib.platforms.unix;
};
}
}; in self