2015-04-29 00:29:18 +01:00
|
|
|
{ stdenv, fetchurl, cmake, ncurses, zlib, openssl, pcre, boost, judy, bison, libxml2
|
2015-10-28 20:15:28 +00:00
|
|
|
, libaio, libevent, groff, jemalloc, perl, fixDarwinDylibNames, cctools
|
2015-03-11 21:12:00 +00:00
|
|
|
}:
|
2014-02-24 20:34:57 +00:00
|
|
|
|
2015-03-11 21:12:00 +00:00
|
|
|
with stdenv.lib;
|
2014-02-24 20:34:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-06-05 08:20:36 +01:00
|
|
|
name = "mariadb-${version}";
|
2015-08-07 22:19:15 +01:00
|
|
|
version = "10.0.21";
|
2014-02-24 20:34:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-06-22 14:28:44 +01:00
|
|
|
url = "https://downloads.mariadb.org/interstitial/mariadb-${version}/source/mariadb-${version}.tar.gz";
|
2015-08-07 22:19:15 +01:00
|
|
|
sha256 = "0i9mzbn35f4lj4y1lqzgbavh5xyx18zfn0ks0nqzvppabkhk56jb";
|
2014-02-24 20:34:57 +00:00
|
|
|
};
|
|
|
|
|
2015-04-29 00:29:18 +01:00
|
|
|
buildInputs = [ cmake ncurses openssl zlib pcre libxml2 boost judy bison libevent ]
|
2015-03-11 21:12:00 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio ]
|
2015-10-28 20:15:28 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools ];
|
2014-04-30 15:54:35 +01:00
|
|
|
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./my_context_asm.patch;
|
2014-02-24 20:34:57 +00:00
|
|
|
|
2015-03-11 21:12:00 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_CONFIG=mysql_release"
|
|
|
|
"-DDEFAULT_CHARSET=utf8"
|
|
|
|
"-DDEFAULT_COLLATION=utf8_general_ci"
|
|
|
|
"-DENABLED_LOCAL_INFILE=ON"
|
|
|
|
"-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
|
|
|
|
"-DMYSQL_DATADIR=/var/lib/mysql"
|
|
|
|
"-DINSTALL_SYSCONFDIR=etc/mysql"
|
|
|
|
"-DINSTALL_INFODIR=share/mysql/docs"
|
|
|
|
"-DINSTALL_MANDIR=share/man"
|
|
|
|
"-DINSTALL_PLUGINDIR=lib/mysql/plugin"
|
|
|
|
"-DINSTALL_SCRIPTDIR=bin"
|
|
|
|
"-DINSTALL_INCLUDEDIR=include/mysql"
|
|
|
|
"-DINSTALL_DOCREADMEDIR=share/mysql"
|
|
|
|
"-DINSTALL_SUPPORTFILESDIR=share/mysql"
|
|
|
|
"-DINSTALL_MYSQLSHAREDIR=share/mysql"
|
|
|
|
"-DINSTALL_DOCDIR=share/mysql/docs"
|
|
|
|
"-DINSTALL_SHAREDIR=share/mysql"
|
|
|
|
"-DWITH_READLINE=ON"
|
|
|
|
"-DWITH_ZLIB=system"
|
|
|
|
"-DWITH_SSL=system"
|
|
|
|
"-DWITH_PCRE=system"
|
|
|
|
"-DWITH_EMBEDDED_SERVER=yes"
|
|
|
|
"-DWITH_EXTRA_CHARSETS=complex"
|
|
|
|
"-DWITH_EMBEDDED_SERVER=ON"
|
|
|
|
"-DWITH_ARCHIVE_STORAGE_ENGINE=1"
|
|
|
|
"-DWITH_BLACKHOLE_STORAGE_ENGINE=1"
|
|
|
|
"-DWITH_INNOBASE_STORAGE_ENGINE=1"
|
|
|
|
"-DWITH_PARTITION_STORAGE_ENGINE=1"
|
|
|
|
"-DWITHOUT_EXAMPLE_STORAGE_ENGINE=1"
|
|
|
|
"-DWITHOUT_FEDERATED_STORAGE_ENGINE=1"
|
2015-06-19 07:47:08 +01:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
"-DWITHOUT_OQGRAPH_STORAGE_ENGINE=1"
|
|
|
|
"-DWITHOUT_TOKUDB=1"
|
2015-10-28 20:15:28 +00:00
|
|
|
"-DCURSES_LIBRARY=${ncurses}/lib/libncurses.dylib"
|
2015-06-19 07:47:08 +01:00
|
|
|
];
|
2014-11-28 17:40:19 +00:00
|
|
|
|
2015-07-28 12:32:27 +01:00
|
|
|
# fails to find lex_token.h sometimes
|
2015-10-28 20:15:28 +00:00
|
|
|
enableParallelBuilding = stdenv.isDarwin;
|
2014-02-24 20:34:57 +00:00
|
|
|
|
2015-04-01 20:36:19 +01:00
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
|
2014-04-30 15:54:35 +01:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace cmake/libutils.cmake \
|
|
|
|
--replace /usr/bin/libtool libtool
|
2015-04-01 20:36:19 +01:00
|
|
|
sed -i "s,SET(DEFAULT_MYSQL_HOME.*$,SET(DEFAULT_MYSQL_HOME /not/a/real/dir),g" CMakeLists.txt
|
|
|
|
sed -i "s,SET(PLUGINDIR.*$,SET(PLUGINDIR $lib/lib/mysql/plugin),g" CMakeLists.txt
|
|
|
|
|
|
|
|
sed -i "s,SET(pkgincludedir.*$,SET(pkgincludedir $lib/include),g" scripts/CMakeLists.txt
|
|
|
|
sed -i "s,SET(pkglibdir.*$,SET(pkglibdir $lib/lib),g" scripts/CMakeLists.txt
|
|
|
|
sed -i "s,SET(pkgplugindir.*$,SET(pkgplugindir $lib/lib/mysql/plugin),g" scripts/CMakeLists.txt
|
|
|
|
|
|
|
|
sed -i "s,set(libdir.*$,SET(libdir $lib/lib),g" storage/mroonga/vendor/groonga/CMakeLists.txt
|
|
|
|
sed -i "s,set(includedir.*$,SET(includedir $lib/include),g" storage/mroonga/vendor/groonga/CMakeLists.txt
|
|
|
|
sed -i "/\"\$[{]CMAKE_INSTALL_PREFIX}\/\$[{]GRN_RELATIVE_PLUGINS_DIR}\"/d" storage/mroonga/vendor/groonga/CMakeLists.txt
|
|
|
|
sed -i "s,set(GRN_PLUGINS_DIR.*$,SET(GRN_PLUGINS_DIR $lib/\$\{GRN_RELATIVE_PLUGINS_DIR}),g" storage/mroonga/vendor/groonga/CMakeLists.txt
|
2015-04-02 03:10:24 +01:00
|
|
|
sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt
|
2014-04-30 15:54:35 +01:00
|
|
|
'';
|
2015-04-01 20:36:19 +01:00
|
|
|
|
2014-04-30 15:54:35 +01:00
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace $out/bin/mysql_install_db \
|
|
|
|
--replace basedir=\"\" basedir=\"$out\"
|
2015-04-01 20:36:19 +01:00
|
|
|
|
|
|
|
# Remove superfluous files
|
2015-04-12 06:32:31 +01:00
|
|
|
rm -r $out/mysql-test $out/sql-bench $out/data # Don't need testing data
|
2015-04-01 20:36:19 +01:00
|
|
|
rm $out/share/man/man1/mysql-test-run.pl.1
|
2015-04-12 06:32:31 +01:00
|
|
|
rm $out/bin/rcmysql # Not needed with nixos units
|
|
|
|
rm $out/bin/mysqlbug # Encodes a path to gcc and not really useful
|
2015-04-01 20:36:19 +01:00
|
|
|
find $out/bin -name \*test\* -exec rm {} \;
|
|
|
|
|
|
|
|
# Separate libs and includes into their own derivation
|
|
|
|
mkdir -p $lib
|
|
|
|
mv $out/lib $lib
|
|
|
|
mv $out/include $lib
|
|
|
|
|
2015-04-29 00:33:27 +01:00
|
|
|
# Fix the mysql_config
|
|
|
|
sed -i $out/bin/mysql_config \
|
|
|
|
-e 's,-lz,-L${zlib}/lib -lz,g' \
|
|
|
|
-e 's,-lssl,-L${openssl}/lib -lssl,g'
|
|
|
|
|
2015-04-02 00:09:18 +01:00
|
|
|
# Add mysql_config to libs since configure scripts use it
|
|
|
|
mkdir -p $lib/bin
|
|
|
|
cp $out/bin/mysql_config $lib/bin
|
|
|
|
sed -i "/\(execdir\|bindir\)/ s,'[^\"']*',$lib/bin,g" $lib/bin/mysql_config
|
|
|
|
|
2015-04-01 20:36:19 +01:00
|
|
|
# Make sure to propagate lib for compatability
|
|
|
|
mkdir -p $out/nix-support
|
2015-04-02 22:20:11 +01:00
|
|
|
echo "$lib" > $out/nix-support/propagated-native-build-inputs
|
2015-07-26 12:24:32 +01:00
|
|
|
|
|
|
|
# Don't install static libraries.
|
|
|
|
rm $lib/lib/libmysqlclient.a $lib/lib/libmysqld.a
|
2014-04-30 15:54:35 +01:00
|
|
|
'';
|
|
|
|
|
2015-03-11 21:12:00 +00:00
|
|
|
passthru.mysqlVersion = "5.6";
|
2014-02-26 12:54:04 +00:00
|
|
|
|
2015-03-11 21:12:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-02-24 20:34:57 +00:00
|
|
|
description = "An enhanced, drop-in replacement for MySQL";
|
|
|
|
homepage = https://mariadb.org/;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-07-01 13:11:05 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice wkennington ];
|
2014-02-24 20:34:57 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|