2018-10-06 14:03:15 +00:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, ncurses, zlib, xz, lzo, lz4, bzip2, snappy
|
2019-05-19 11:35:10 +00:00
|
|
|
, libiconv, openssl, pcre, boost, judy, bison, libxml2, libkrb5
|
2018-07-21 00:44:44 +00:00
|
|
|
, libaio, libevent, jemalloc, cracklib, systemd, numactl, perl
|
2015-11-15 19:57:06 +00:00
|
|
|
, fixDarwinDylibNames, cctools, CoreServices
|
2018-06-11 18:42:53 +00:00
|
|
|
, asio, buildEnv, check, scons
|
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;
|
2016-07-31 19:46:48 +00:00
|
|
|
|
|
|
|
let # in mariadb # spans the whole file
|
|
|
|
|
2016-08-07 20:44:57 +00:00
|
|
|
mariadb = everything // {
|
|
|
|
inherit client; # libmysqlclient.so in .out, necessary headers in .dev and utils in .bin
|
|
|
|
server = everything; # a full single-output build, including everything in `client` again
|
2017-07-09 15:43:03 +00:00
|
|
|
inherit connector-c; # libmysqlclient.so
|
2017-12-29 17:28:53 +00:00
|
|
|
inherit galera;
|
|
|
|
};
|
|
|
|
|
|
|
|
galeraLibs = buildEnv {
|
|
|
|
name = "galera-lib-inputs-united";
|
|
|
|
paths = [ openssl.out boost check ];
|
2016-07-31 19:46:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
common = rec { # attributes common to both builds
|
2019-05-19 12:15:32 +00:00
|
|
|
version = "10.3.15";
|
2014-02-24 20:34:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-11 23:31:05 +00:00
|
|
|
urls = [
|
|
|
|
"https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz"
|
|
|
|
"https://downloads.mariadb.com/MariaDB/mariadb-${version}/source/mariadb-${version}.tar.gz"
|
|
|
|
];
|
2019-05-19 12:15:32 +00:00
|
|
|
sha256 = "0s399nxk2z8fgdr527p64y74zwjc3gpv7psf1n2r6ksl9njr3wr7";
|
2017-07-06 17:02:03 +00:00
|
|
|
name = "mariadb-${version}.tar.gz";
|
2014-02-24 20:34:57 +00:00
|
|
|
};
|
|
|
|
|
2017-07-29 21:34:16 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2017-12-21 08:32:59 +00:00
|
|
|
|
2017-07-29 21:34:16 +00:00
|
|
|
buildInputs = [
|
2018-01-06 18:43:26 +00:00
|
|
|
ncurses openssl zlib pcre jemalloc libiconv
|
2019-05-19 11:35:10 +00:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [ libaio systemd libkrb5 ]
|
2018-01-06 18:43:26 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools CoreServices ];
|
2017-07-29 21:34:16 +00:00
|
|
|
|
2016-07-31 19:46:48 +00:00
|
|
|
prePatch = ''
|
|
|
|
sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt
|
|
|
|
'';
|
|
|
|
|
2019-05-19 12:15:32 +00:00
|
|
|
patches = [ ./cmake-includedir.patch ]
|
2018-01-06 10:17:59 +00:00
|
|
|
++ stdenv.lib.optional stdenv.cc.isClang ./clang-isfinite.patch;
|
2017-12-25 13:00:03 +00:00
|
|
|
|
2015-03-11 21:12:00 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_CONFIG=mysql_release"
|
2016-07-31 19:46:48 +00:00
|
|
|
"-DMANUFACTURER=NixOS.org"
|
2019-05-19 12:08:04 +00:00
|
|
|
"-DDEFAULT_CHARSET=utf8mb4"
|
|
|
|
"-DDEFAULT_COLLATION=utf8mb4_unicode_ci"
|
2016-07-31 19:46:48 +00:00
|
|
|
"-DSECURITY_HARDENED=ON"
|
|
|
|
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DINSTALL_UNIX_ADDRDIR=/run/mysqld/mysqld.sock"
|
|
|
|
"-DINSTALL_BINDIR=bin"
|
|
|
|
"-DINSTALL_DOCDIR=share/doc/mysql"
|
|
|
|
"-DINSTALL_DOCREADMEDIR=share/doc/mysql"
|
|
|
|
"-DINSTALL_INCLUDEDIR=include/mysql"
|
|
|
|
"-DINSTALL_INFODIR=share/mysql/docs"
|
|
|
|
"-DINSTALL_MANDIR=share/man"
|
2016-07-31 19:46:48 +00:00
|
|
|
"-DINSTALL_MYSQLSHAREDIR=share/mysql"
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DINSTALL_SCRIPTDIR=bin"
|
|
|
|
"-DINSTALL_SUPPORTFILESDIR=share/doc/mysql"
|
|
|
|
"-DINSTALL_MYSQLTESTDIR=OFF"
|
|
|
|
"-DINSTALL_SQLBENCHDIR=OFF"
|
2016-07-31 19:46:48 +00:00
|
|
|
|
|
|
|
"-DWITH_ZLIB=system"
|
|
|
|
"-DWITH_SSL=system"
|
2017-12-25 13:00:03 +00:00
|
|
|
"-DWITH_PCRE=system"
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DWITH_SAFEMALLOC=OFF"
|
|
|
|
"-DEMBEDDED_LIBRARY=OFF"
|
|
|
|
] ++ optional stdenv.isDarwin [
|
2016-08-14 18:29:02 +00:00
|
|
|
# On Darwin without sandbox, CMake will find the system java and attempt to build with java support, but
|
|
|
|
# then it will fail during the actual build. Let's just disable the flag explicitly until someone decides
|
2019-05-19 11:35:10 +00:00
|
|
|
# to pass in java explicitly.
|
2016-08-14 18:29:02 +00:00
|
|
|
"-DCONNECT_WITH_JDBC=OFF"
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DCURSES_LIBRARY=${ncurses.out}/lib/libncurses.dylib"
|
|
|
|
] ++ optional stdenv.hostPlatform.isMusl [
|
|
|
|
"-DWITHOUT_TOKUDB=1" # mariadb docs say disable this for musl
|
|
|
|
];
|
2016-07-31 19:46:48 +00:00
|
|
|
|
2017-07-06 17:02:03 +00:00
|
|
|
passthru.mysqlVersion = "5.7";
|
2016-07-31 19:46:48 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An enhanced, drop-in replacement for MySQL";
|
|
|
|
homepage = https://mariadb.org/;
|
|
|
|
license = licenses.gpl2;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2016-07-31 19:46:48 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
client = stdenv.mkDerivation (common // {
|
|
|
|
name = "mariadb-client-${common.version}";
|
|
|
|
|
2019-05-19 11:40:53 +00:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2016-07-31 19:46:48 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ openssl zlib ]; # required from mariadb.pc
|
|
|
|
|
2019-05-19 12:15:32 +00:00
|
|
|
patches = [ ./cmake-plugin-includedir.patch ];
|
|
|
|
|
2016-07-31 19:46:48 +00:00
|
|
|
cmakeFlags = common.cmakeFlags ++ [
|
|
|
|
"-DWITHOUT_SERVER=ON"
|
2019-05-19 11:40:53 +00:00
|
|
|
"-DWITH_WSREP=OFF"
|
2016-07-31 19:46:48 +00:00
|
|
|
];
|
|
|
|
|
2019-05-19 11:40:53 +00:00
|
|
|
postInstall = ''
|
|
|
|
rm -r "$out"/share/mysql
|
|
|
|
rm -r "$out"/share/doc
|
|
|
|
rm "$out"/bin/{msql2mysql,mysql_plugin,mytop,wsrep_sst_rsync_wan,mysql_config,mariadb_config}
|
|
|
|
rm "$out"/lib/plugin/{daemon_example.ini,dialog.so,mysql_clear_password.so,sha256_password.so}
|
|
|
|
rm "$out"/lib/{libmariadb.so,libmysqlclient.so,libmysqlclient_r.so}
|
|
|
|
mv "$out"/lib/libmariadb.so.3 "$out"/lib/libmysqlclient.so
|
|
|
|
ln -sv libmysqlclient.so "$out"/lib/libmysqlclient_r.so
|
|
|
|
mkdir -p "$dev"/lib && mv "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a} "$dev"/lib
|
2016-07-31 19:46:48 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true; # the client should be OK
|
|
|
|
});
|
|
|
|
|
2016-08-07 20:44:57 +00:00
|
|
|
everything = stdenv.mkDerivation (common // {
|
2016-07-31 19:46:48 +00:00
|
|
|
name = "mariadb-${common.version}";
|
|
|
|
|
2019-05-19 11:35:10 +00:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2016-07-31 19:46:48 +00:00
|
|
|
nativeBuildInputs = common.nativeBuildInputs ++ [ bison ];
|
|
|
|
|
|
|
|
buildInputs = common.buildInputs ++ [
|
|
|
|
xz lzo lz4 bzip2 snappy
|
|
|
|
libxml2 boost judy libevent cracklib
|
treewide: isArm -> isAarch32
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-03-20 02:41:06 +00:00
|
|
|
] ++ optional (stdenv.isLinux && !stdenv.isAarch32) numactl;
|
2016-07-31 19:46:48 +00:00
|
|
|
|
|
|
|
cmakeFlags = common.cmakeFlags ++ [
|
2015-03-11 21:12:00 +00:00
|
|
|
"-DMYSQL_DATADIR=/var/lib/mysql"
|
|
|
|
"-DINSTALL_PLUGINDIR=lib/mysql/plugin"
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DENABLED_LOCAL_INFILE=OFF"
|
2015-03-11 21:12:00 +00:00
|
|
|
"-DWITH_READLINE=ON"
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DWITH_EXTRA_CHARSETS=all"
|
|
|
|
"-DWITH_EMBEDDED_SERVER=OFF"
|
|
|
|
"-DWITH_UNIT_TESTS=OFF"
|
2015-10-17 21:14:34 +00:00
|
|
|
"-DWITH_WSREP=ON"
|
2017-12-29 17:28:53 +00:00
|
|
|
"-DWITH_INNODB_DISALLOW_WRITES=ON"
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DWITHOUT_EXAMPLE=1"
|
|
|
|
"-DWITHOUT_FEDERATED=1"
|
2015-06-19 06:47:08 +00:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
2019-05-19 11:35:10 +00:00
|
|
|
"-DWITHOUT_OQGRAPH=1"
|
2015-06-19 06:47:08 +00:00
|
|
|
"-DWITHOUT_TOKUDB=1"
|
|
|
|
];
|
2014-02-24 20:34:57 +00:00
|
|
|
|
2019-05-19 11:35:10 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cmakeFlags="$cmakeFlags \
|
|
|
|
-DINSTALL_SHAREDIR=$dev/share/mysql
|
|
|
|
-DINSTALL_SUPPORTFILESDIR=$dev/share/mysql"
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
chmod +x "$out"/bin/wsrep_sst_common
|
2018-01-01 08:45:45 +00:00
|
|
|
rm -r "$out"/data # Don't need testing data
|
2019-05-19 11:35:10 +00:00
|
|
|
rm "$out"/bin/{mysql_find_rows,mysql_waitpid,mysqlaccess,mysqladmin,mysqlbinlog,mysqlcheck}
|
|
|
|
rm "$out"/bin/{mysqldump,mysqlhotcopy,mysqlimport,mysqlshow,mysqlslap,mysqltest}
|
|
|
|
rm "$out"/lib/mysql/plugin/{auth_gssapi_client.so,client_ed25519.so,daemon_example.ini}
|
|
|
|
rm "$out"/lib/{libmysqlclient.so,libmysqlclient_r.so}
|
|
|
|
mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql
|
|
|
|
mkdir -p "$dev"/lib && mv "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a} "$dev"/lib
|
2018-06-11 18:04:25 +00:00
|
|
|
'' + optionalString (! stdenv.isDarwin) ''
|
2017-12-29 17:28:53 +00:00
|
|
|
sed -i 's/-mariadb/-mysql/' "$out"/bin/galera_new_cluster
|
2014-04-30 14:54:35 +00:00
|
|
|
'';
|
2017-07-30 20:08:19 +00:00
|
|
|
|
2018-01-06 10:17:59 +00:00
|
|
|
CXXFLAGS = optionalString stdenv.isi686 "-fpermissive"
|
|
|
|
+ optionalString stdenv.isDarwin " -std=c++11";
|
2016-07-31 19:46:48 +00:00
|
|
|
});
|
2015-04-01 19:36:19 +00:00
|
|
|
|
2017-07-09 15:43:03 +00:00
|
|
|
connector-c = stdenv.mkDerivation rec {
|
|
|
|
name = "mariadb-connector-c-${version}";
|
2018-10-16 07:04:37 +00:00
|
|
|
version = "2.3.7";
|
2017-07-09 15:43:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-11 23:31:05 +00:00
|
|
|
url = "https://downloads.mariadb.org/interstitial/connector-c-${version}/mariadb-connector-c-${version}-src.tar.gz/from/http%3A//nyc2.mirrors.digitalocean.com/mariadb/";
|
2018-10-16 07:04:37 +00:00
|
|
|
sha256 = "13izi35vvxhiwl2dsnqrz75ciisy2s2k30giv7hrm01qlwnmiycl";
|
2017-07-09 15:43:03 +00:00
|
|
|
name = "mariadb-connector-c-${version}-src.tar.gz";
|
|
|
|
};
|
|
|
|
|
|
|
|
# outputs = [ "dev" "out" ]; FIXME: cmake variables don't allow that < 3.0
|
2017-08-24 01:55:32 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DWITH_EXTERNAL_ZLIB=ON"
|
|
|
|
"-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
|
|
|
|
];
|
2017-07-09 15:43:03 +00:00
|
|
|
|
2018-01-27 21:52:33 +00:00
|
|
|
# The cmake setup-hook uses $out/lib by default, this is not the case here.
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
cmakeFlagsArray+=("-DCMAKE_INSTALL_NAME_DIR=$out/lib/mariadb")
|
|
|
|
'';
|
|
|
|
|
2017-07-09 15:43:03 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
propagatedBuildInputs = [ openssl zlib ];
|
2018-01-06 18:43:26 +00:00
|
|
|
buildInputs = [ libiconv ];
|
2017-07-09 15:43:03 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
ln -sv mariadb_config $out/bin/mysql_config
|
2017-12-25 14:59:05 +00:00
|
|
|
ln -sv mariadb $out/lib/mysql
|
|
|
|
ln -sv mariadb $out/include/mysql
|
2017-07-09 15:43:03 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Client library that can be used to connect to MySQL or MariaDB";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ globin ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-12-29 17:28:53 +00:00
|
|
|
galera = stdenv.mkDerivation rec {
|
|
|
|
name = "mariadb-galera-${version}";
|
2019-04-23 17:59:57 +00:00
|
|
|
version = "25.3.26";
|
2018-10-06 14:03:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "codership";
|
|
|
|
repo = "galera";
|
|
|
|
rev = "release_${version}";
|
2019-04-23 17:59:57 +00:00
|
|
|
sha256 = "0fs0c1px9lknf1a5wwb12z1hj7j7b6hsfjddggikvkdkrnr2xs1f";
|
2018-10-06 14:03:15 +00:00
|
|
|
fetchSubmodules = true;
|
2017-12-29 17:28:53 +00:00
|
|
|
};
|
|
|
|
|
2018-06-11 18:42:53 +00:00
|
|
|
buildInputs = [ asio boost check openssl scons ];
|
2017-12-29 17:28:53 +00:00
|
|
|
|
2018-11-12 02:52:07 +00:00
|
|
|
postPatch = ''
|
2017-12-29 17:28:53 +00:00
|
|
|
substituteInPlace SConstruct \
|
|
|
|
--replace "boost_library_path = '''" "boost_library_path = '${boost}/lib'"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
2018-06-11 18:42:53 +00:00
|
|
|
export CPPFLAGS="-I${asio}/include -I${boost.dev}/include -I${check}/include -I${openssl.dev}/include"
|
2017-12-29 17:28:53 +00:00
|
|
|
export LIBPATH="${galeraLibs}/lib"
|
|
|
|
'';
|
|
|
|
|
2019-04-23 17:59:57 +00:00
|
|
|
sconsFlags = "ssl=1 system_asio=0 strict_build_flags=0";
|
2017-12-29 17:28:53 +00:00
|
|
|
|
2019-04-23 17:59:57 +00:00
|
|
|
installPhase = ''
|
2017-12-29 17:28:53 +00:00
|
|
|
# copied with modifications from scripts/packages/freebsd.sh
|
|
|
|
GALERA_LICENSE_DIR="$share/licenses/${name}"
|
|
|
|
install -d $out/{bin,lib/galera,share/doc/galera,$GALERA_LICENSE_DIR}
|
|
|
|
install -m 555 "garb/garbd" "$out/bin/garbd"
|
|
|
|
install -m 444 "libgalera_smm.so" "$out/lib/galera/libgalera_smm.so"
|
|
|
|
install -m 444 "scripts/packages/README" "$out/share/doc/galera/"
|
|
|
|
install -m 444 "scripts/packages/README-MySQL" "$out/share/doc/galera/"
|
|
|
|
install -m 444 "scripts/packages/freebsd/LICENSE" "$out/$GALERA_LICENSE_DIR"
|
|
|
|
install -m 444 "LICENSE" "$out/$GALERA_LICENSE_DIR/GPLv2"
|
|
|
|
install -m 444 "asio/LICENSE_1_0.txt" "$out/$GALERA_LICENSE_DIR/LICENSE.asio"
|
|
|
|
install -m 444 "www.evanjones.ca/LICENSE" "$out/$GALERA_LICENSE_DIR/LICENSE.crc32c"
|
|
|
|
install -m 444 "chromium/LICENSE" "$out/$GALERA_LICENSE_DIR/LICENSE.chromium"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Galera 3 wsrep provider library";
|
|
|
|
homepage = http://galeracluster.com/;
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ izorkin ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
};
|
2016-07-31 19:46:48 +00:00
|
|
|
in mariadb
|