mysql55: add passthrus for compatibility
This commit is contained in:
parent
add8d3282e
commit
e66d587aeb
@ -3,7 +3,8 @@
|
|||||||
|
|
||||||
# Note: zlib is not required; MySQL can use an internal zlib.
|
# Note: zlib is not required; MySQL can use an internal zlib.
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
|
self = stdenv.mkDerivation rec {
|
||||||
name = "mysql-${version}";
|
name = "mysql-${version}";
|
||||||
version = "5.5.58";
|
version = "5.5.58";
|
||||||
|
|
||||||
@ -59,11 +60,16 @@ stdenv.mkDerivation rec {
|
|||||||
rm $out/share/man/man1/mysql-test-run.pl.1
|
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 = {
|
meta = {
|
||||||
homepage = http://www.mysql.com/;
|
homepage = http://www.mysql.com/;
|
||||||
description = "The world's most popular open source database";
|
description = "The world's most popular open source database";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}; in self
|
||||||
|
Loading…
x
Reference in New Issue
Block a user