nixpkgs/pkgs/servers/sql/mariadb/default.nix

216 lines
7.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkg-config, makeWrapper, ncurses, nixosTests
2020-07-01 17:04:34 +03:00
, libiconv, openssl, pcre2, boost, judy, bison, libxml2, libkrb5, linux-pam, curl
, libaio, libevent, jemalloc, cracklib, systemd, perl
2020-04-02 10:22:10 +03:00
, bzip2, lz4, lzo, snappy, xz, zlib, zstd
2019-10-10 21:14:01 +03:00
, fixDarwinDylibNames, cctools, CoreServices, less
2020-02-06 14:25:28 +03:00
, numactl # NUMA Support
2020-02-06 16:33:59 +03:00
, withStorageMroonga ? true, kytea, msgpack, zeromq
, withStorageRocks ? true
2015-03-12 00:12:00 +03:00
}:
2014-02-25 00:34:57 +04:00
2021-01-15 10:07:56 +03:00
with lib;
let # in mariadb # spans the whole file
libExt = stdenv.hostPlatform.extensions.sharedLibrary;
mytopEnv = perl.withPackages (p: with p; [ DBDmysql DBI TermReadKey ]);
2019-07-11 05:49:51 +03:00
mariadb = server // {
inherit client; # MariaDB Client
server = server; # MariaDB Server
};
common = rec { # attributes common to both builds
2021-05-08 02:55:18 +03:00
version = "10.5.10";
2014-02-25 00:34:57 +04:00
src = fetchurl {
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"
];
2021-05-08 02:55:18 +03:00
sha256 = "1fxsq2xgcb8j81z043bifpmxblj6nb3wqjm9rgsnpwmazkwk5zx5";
2017-07-06 20:02:03 +03:00
name = "mariadb-${version}.tar.gz";
2014-02-25 00:34:57 +04:00
};
nativeBuildInputs = [ cmake pkg-config ]
++ optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
2017-12-21 11:32:59 +03:00
2017-07-30 00:34:16 +03:00
buildInputs = [
2020-07-01 17:04:34 +03:00
ncurses openssl zlib pcre2 libiconv curl
2019-10-10 21:14:01 +03:00
] ++ optionals stdenv.hostPlatform.isLinux [ libaio systemd libkrb5 ]
++ optionals stdenv.hostPlatform.isDarwin [ perl cctools CoreServices ]
++ optional (!stdenv.hostPlatform.isDarwin) [ jemalloc ];
2017-07-30 00:34:16 +03:00
prePatch = ''
sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt
'';
2019-08-01 14:08:45 +03:00
patches = [
./cmake-includedir.patch
2019-11-12 04:40:01 +03:00
];
2015-03-12 00:12:00 +03:00
cmakeFlags = [
"-DBUILD_CONFIG=mysql_release"
"-DMANUFACTURER=NixOS.org"
"-DDEFAULT_CHARSET=utf8mb4"
"-DDEFAULT_COLLATION=utf8mb4_unicode_ci"
"-DSECURITY_HARDENED=ON"
2019-05-19 14:35:10 +03: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_LIBDIR=lib"
2019-08-01 14:08:45 +03:00
"-DINSTALL_PLUGINDIR=lib/mysql/plugin"
2019-05-19 14:35:10 +03:00
"-DINSTALL_INFODIR=share/mysql/docs"
"-DINSTALL_MANDIR=share/man"
"-DINSTALL_MYSQLSHAREDIR=share/mysql"
2019-05-19 14:35:10 +03:00
"-DINSTALL_SCRIPTDIR=bin"
"-DINSTALL_SUPPORTFILESDIR=share/doc/mysql"
"-DINSTALL_MYSQLTESTDIR=OFF"
"-DINSTALL_SQLBENCHDIR=OFF"
"-DINSTALL_PAMDIR=share/pam/lib/security"
"-DINSTALL_PAMDATADIR=share/pam/etc/security"
"-DWITH_ZLIB=system"
"-DWITH_SSL=system"
"-DWITH_PCRE=system"
2019-05-19 14:35:10 +03:00
"-DWITH_SAFEMALLOC=OFF"
2019-08-01 14:22:10 +03:00
"-DWITH_UNIT_TESTS=OFF"
2019-05-19 14:35:10 +03:00
"-DEMBEDDED_LIBRARY=OFF"
2019-10-10 21:14:01 +03:00
] ++ optionals stdenv.hostPlatform.isDarwin [
# 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 14:35:10 +03:00
# to pass in java explicitly.
"-DCONNECT_WITH_JDBC=OFF"
2019-05-19 14:35:10 +03:00
"-DCURSES_LIBRARY=${ncurses.out}/lib/libncurses.dylib"
];
2019-08-01 14:08:45 +03:00
postInstall = ''
2019-10-10 17:53:48 +03:00
# Remove Development components. Need to use libmysqlclient.
2019-08-01 14:25:45 +03:00
rm "$out"/lib/mysql/plugin/daemon_example.ini
2019-10-10 17:53:48 +03:00
rm "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a}
rm "$out"/bin/{mariadb_config,mysql_config}
rm -r $out/include
rm -r $out/lib/pkgconfig
2020-05-15 12:24:25 +03:00
rm -r $out/share/aclocal
2019-08-01 14:08:45 +03:00
'';
2017-07-06 20:02:03 +03:00
passthru.mysqlVersion = "5.7";
passthru.tests = {
mariadb-galera-mariabackup = nixosTests.mariadb-galera-mariabackup;
mariadb-galera-rsync = nixosTests.mariadb-galera-rsync;
2020-05-06 14:02:41 +03:00
mysql = nixosTests.mysql;
mysql-autobackup = nixosTests.mysql-autobackup;
mysql-backup = nixosTests.mysql-backup;
mysql-replication = nixosTests.mysql-replication;
};
2019-08-01 14:25:45 +03:00
meta = {
description = "An enhanced, drop-in replacement for MySQL";
homepage = "https://mariadb.org/";
license = licenses.gpl2;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.all;
};
};
client = stdenv.mkDerivation (common // {
2019-08-01 14:01:56 +03:00
pname = "mariadb-client";
2019-10-10 17:53:48 +03:00
outputs = [ "out" "man" ];
patches = common.patches ++ [
./cmake-plugin-includedir.patch
];
2019-05-19 15:15:32 +03:00
cmakeFlags = common.cmakeFlags ++ [
2020-08-11 12:47:07 +03:00
"-DPLUGIN_AUTH_PAM=OFF"
"-DWITHOUT_SERVER=ON"
2019-05-19 14:40:53 +03:00
"-DWITH_WSREP=OFF"
"-DINSTALL_MYSQLSHAREDIR=share/mysql-client"
];
postInstall = common.postInstall + ''
2019-05-19 14:40:53 +03:00
rm -r "$out"/share/doc
2020-08-11 12:47:07 +03:00
rm "$out"/bin/{mysqltest,mytop}
libmysqlclient_path=$(readlink -f $out/lib/libmysqlclient${libExt})
rm "$out"/lib/{libmariadb${libExt},libmysqlclient${libExt},libmysqlclient_r${libExt}}
mv "$libmysqlclient_path" "$out"/lib/libmysqlclient${libExt}
ln -sv libmysqlclient${libExt} "$out"/lib/libmysqlclient_r${libExt}
'';
});
server = stdenv.mkDerivation (common // {
pname = "mariadb-server";
2019-10-10 17:53:48 +03:00
outputs = [ "out" "man" ];
2019-05-19 14:35:10 +03:00
2020-04-02 10:31:58 +03:00
nativeBuildInputs = common.nativeBuildInputs ++ [ bison boost.dev ] ++ optional (!stdenv.hostPlatform.isDarwin) makeWrapper;
buildInputs = common.buildInputs ++ [
2020-04-02 10:22:10 +03:00
bzip2 lz4 lzo snappy xz zstd
2020-04-02 10:31:58 +03:00
libxml2 judy libevent cracklib
2019-10-10 21:14:01 +03:00
] ++ optional (stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch32) numactl
2020-02-06 16:33:59 +03:00
++ optionals withStorageMroonga [ kytea msgpack zeromq ]
2019-10-10 21:14:01 +03:00
++ optional stdenv.hostPlatform.isLinux linux-pam
++ optional (!stdenv.hostPlatform.isDarwin) mytopEnv;
2020-08-11 12:47:07 +03:00
patches = common.patches;
cmakeFlags = common.cmakeFlags ++ [
2015-03-12 00:12:00 +03:00
"-DMYSQL_DATADIR=/var/lib/mysql"
2019-05-19 14:35:10 +03:00
"-DENABLED_LOCAL_INFILE=OFF"
2015-03-12 00:12:00 +03:00
"-DWITH_READLINE=ON"
2019-05-19 14:35:10 +03:00
"-DWITH_EXTRA_CHARSETS=all"
"-DWITH_EMBEDDED_SERVER=OFF"
"-DWITH_UNIT_TESTS=OFF"
"-DWITH_WSREP=ON"
2017-12-29 20:28:53 +03:00
"-DWITH_INNODB_DISALLOW_WRITES=ON"
2019-05-19 14:35:10 +03:00
"-DWITHOUT_EXAMPLE=1"
"-DWITHOUT_FEDERATED=1"
"-DWITHOUT_TOKUDB=1"
2020-02-06 14:25:28 +03:00
] ++ optional (stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch32) [
"-DWITH_NUMA=ON"
2020-02-06 16:33:59 +03:00
] ++ optional (!withStorageMroonga) [
"-DWITHOUT_MROONGA=1"
] ++ optional (!withStorageRocks) [
"-DWITHOUT_ROCKSDB=1"
] ++ optional (!stdenv.hostPlatform.isDarwin && withStorageRocks) [
"-DWITH_ROCKSDB_JEMALLOC=ON"
] ++ optional (!stdenv.hostPlatform.isDarwin) [
2020-07-01 17:04:34 +03:00
"-DWITH_JEMALLOC=yes"
] ++ optionals stdenv.hostPlatform.isDarwin [
2020-08-11 12:47:07 +03:00
"-DPLUGIN_AUTH_PAM=OFF"
"-DWITHOUT_OQGRAPH=1"
"-DWITHOUT_PLUGIN_S3=1"
2015-06-19 09:47:08 +03:00
];
2014-02-25 00:34:57 +04:00
2019-10-10 21:14:01 +03:00
preConfigure = optionalString (!stdenv.hostPlatform.isDarwin) ''
2019-07-11 05:49:51 +03:00
patchShebangs scripts/mytop.sh
2019-05-19 14:35:10 +03:00
'';
2019-08-01 14:08:45 +03:00
postInstall = common.postInstall + ''
2019-05-19 14:35:10 +03:00
chmod +x "$out"/bin/wsrep_sst_common
2020-05-05 09:59:07 +03:00
rm "$out"/bin/{mariadb-client-test,mariadb-test,mysql_client_test,mysqltest}
2020-02-06 16:33:59 +03:00
'' + optionalString withStorageMroonga ''
mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql
2019-10-10 21:14:01 +03:00
'' + optionalString (!stdenv.hostPlatform.isDarwin) ''
mv "$out"/OFF/suite/plugins/pam/pam_mariadb_mtr.so "$out"/share/pam/lib/security
mv "$out"/OFF/suite/plugins/pam/mariadb_mtr "$out"/share/pam/etc/security
rm -r "$out"/OFF
2017-12-29 20:28:53 +03:00
sed -i 's/-mariadb/-mysql/' "$out"/bin/galera_new_cluster
'';
2017-07-30 23:08:19 +03:00
2019-07-11 05:49:51 +03:00
# perlPackages.DBDmysql is broken on darwin
2019-10-10 21:14:01 +03:00
postFixup = optionalString (!stdenv.hostPlatform.isDarwin) ''
wrapProgram $out/bin/mytop --set PATH ${makeBinPath [ less ncurses ]}
2019-07-11 05:49:51 +03:00
'';
2019-10-10 21:14:01 +03:00
CXXFLAGS = optionalString stdenv.hostPlatform.isi686 "-fpermissive";
});
in mariadb