2016-03-18 14:23:14 +01:00
|
|
|
{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl
|
|
|
|
, cctools, CoreServices }:
|
2011-08-04 00:10:06 +02:00
|
|
|
|
|
|
|
# Note: zlib is not required; MySQL can use an internal zlib.
|
|
|
|
|
2017-12-28 14:07:15 +01:00
|
|
|
let
|
|
|
|
self = stdenv.mkDerivation rec {
|
2012-10-04 08:23:55 +02:00
|
|
|
name = "mysql-${version}";
|
2018-05-29 10:36:21 +02:00
|
|
|
version = "5.5.60";
|
2011-08-04 00:10:06 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-08-11 11:46:31 +02:00
|
|
|
url = "mirror://mysql/MySQL-5.5/${name}.tar.gz";
|
2018-05-29 10:36:21 +02:00
|
|
|
sha256 = "071xaamqkbscybqzm79gf2w3bkr9lqlzwafis3gzc8w8fkhi4hd3";
|
2011-08-04 00:10:06 +02:00
|
|
|
};
|
|
|
|
|
2014-10-23 20:03:22 +02:00
|
|
|
patches = if stdenv.isCygwin then [
|
|
|
|
./5.5.17-cygwin.patch
|
|
|
|
./5.5.17-export-symbols.patch
|
|
|
|
] else null;
|
|
|
|
|
2014-07-24 23:19:16 +02:00
|
|
|
preConfigure = stdenv.lib.optional stdenv.isDarwin ''
|
|
|
|
ln -s /bin/ps $TMPDIR/ps
|
|
|
|
export PATH=$PATH:$TMPDIR
|
|
|
|
'';
|
|
|
|
|
2012-12-07 18:36:31 +01:00
|
|
|
buildInputs = [ cmake bison ncurses openssl readline zlib ]
|
2016-03-18 14:23:14 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices ];
|
2012-12-07 18:36:31 +01:00
|
|
|
|
2012-10-04 08:27:51 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-10-20 18:16:07 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DWITH_SSL=yes"
|
|
|
|
"-DWITH_READLINE=yes"
|
|
|
|
"-DWITH_EMBEDDED_SERVER=yes"
|
|
|
|
"-DWITH_ZLIB=yes"
|
|
|
|
"-DHAVE_IPV6=yes"
|
2015-04-01 00:49:18 +02:00
|
|
|
"-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
|
|
|
|
"-DMYSQL_DATADIR=/var/lib/mysql"
|
|
|
|
"-DINSTALL_SYSCONFDIR=etc/mysql"
|
|
|
|
"-DINSTALL_INFODIR=share/mysql/docs"
|
2014-10-20 18:16:07 +02:00
|
|
|
"-DINSTALL_MANDIR=share/man"
|
2015-04-01 00:49:18 +02:00
|
|
|
"-DINSTALL_PLUGINDIR=lib/mysql/plugin"
|
2014-10-20 18:16:07 +02:00
|
|
|
"-DINSTALL_SCRIPTDIR=bin"
|
2015-04-01 00:49:18 +02:00
|
|
|
"-DINSTALL_INCLUDEDIR=include/mysql"
|
|
|
|
"-DINSTALL_DOCREADMEDIR=share/mysql"
|
2014-10-20 18:16:07 +02:00
|
|
|
"-DINSTALL_SUPPORTFILESDIR=share/mysql"
|
2015-04-01 00:49:18 +02:00
|
|
|
"-DINSTALL_MYSQLSHAREDIR=share/mysql"
|
|
|
|
"-DINSTALL_DOCDIR=share/mysql/docs"
|
|
|
|
"-DINSTALL_SHAREDIR=share/mysql"
|
2018-05-29 10:36:21 +02:00
|
|
|
"-DINSTALL_MYSQLTESTDIR="
|
|
|
|
"-DINSTALL_SQLBENCHDIR="
|
2014-10-20 18:16:07 +02:00
|
|
|
];
|
2013-05-14 11:46:52 +02:00
|
|
|
|
2018-03-02 09:20:11 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-fpermissive" ]; # since gcc-7
|
2011-08-04 00:10:06 +02:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
|
|
|
|
2012-12-06 00:43:34 +01:00
|
|
|
prePatch = ''
|
|
|
|
sed -i -e "s|/usr/bin/libtool|libtool|" cmake/libutils.cmake
|
|
|
|
'';
|
2011-08-04 00:10:06 +02:00
|
|
|
postInstall = ''
|
|
|
|
sed -i -e "s|basedir=\"\"|basedir=\"$out\"|" $out/bin/mysql_install_db
|
2018-05-29 10:36:21 +02:00
|
|
|
rm -r $out/data "$out"/lib/*.a
|
2011-08-04 00:10:06 +02:00
|
|
|
'';
|
|
|
|
|
2017-12-28 14:07:15 +01:00
|
|
|
passthru = {
|
|
|
|
client = self;
|
|
|
|
connector-c = self;
|
|
|
|
server = self;
|
|
|
|
mysqlVersion = "5.5";
|
|
|
|
};
|
2014-02-26 13:54:04 +01:00
|
|
|
|
2018-11-14 23:10:06 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 20:42:46 +01:00
|
|
|
homepage = https://www.mysql.com/;
|
2011-08-04 00:10:06 +02:00
|
|
|
description = "The world's most popular open source database";
|
2018-11-14 23:10:06 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
# See https://downloads.mysql.com/docs/licenses/mysqld-5.5-gpl-en.pdf
|
|
|
|
license = with licenses; [
|
|
|
|
artistic1 bsd0 bsd2 bsd3 bsdOriginal
|
|
|
|
gpl2 lgpl2 lgpl21 mit publicDomain licenses.zlib
|
|
|
|
];
|
2011-08-04 00:10:06 +02:00
|
|
|
};
|
2017-12-28 14:07:15 +01:00
|
|
|
}; in self
|