1aa13609b6
https://github.com/NixOS/nixpkgs/issues/49174 shows us the error that we were experiencing. The last successful build was https://hydra.nixos.org/build/81938220, with the first failing here: https://hydra.nixos.org/build/82083071 The difference between these 2 builds seems to be Protobuf 3.4 being updated to Protobuf 3.6. Protobuf fails because the newer version uses newer C++ features. This commit makes MySQL 5.7 use C++ 11 to fix these issues.
88 lines
2.6 KiB
Nix
88 lines
2.6 KiB
Nix
{ stdenv, fetchurl, cmake, bison
|
|
, boost, libedit, libevent, lz4, ncurses, openssl, protobuf, readline, zlib, perl
|
|
, cctools, CoreServices, developer_cmds }:
|
|
|
|
# Note: zlib is not required; MySQL can use an internal zlib.
|
|
|
|
let
|
|
self = stdenv.mkDerivation rec {
|
|
name = "mysql-${version}";
|
|
version = "5.7.25";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://mysql/MySQL-5.7/${name}.tar.gz";
|
|
sha256 = "0gvjcdnba7nf2dx3fbqk1qyg49zclfvaihb78l8h6qc08di1qxak";
|
|
};
|
|
|
|
preConfigure = stdenv.lib.optional stdenv.isDarwin ''
|
|
ln -s /bin/ps $TMPDIR/ps
|
|
export PATH=$PATH:$TMPDIR
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake bison ];
|
|
|
|
buildInputs = [ boost libedit libevent lz4 ncurses openssl protobuf readline zlib ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices developer_cmds ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
outputs = [ "out" "static" ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF" # To run libmysql/libmysql_api_test during build.
|
|
"-DWITH_SSL=yes"
|
|
"-DWITH_EMBEDDED_SERVER=yes"
|
|
"-DWITH_UNIT_TESTS=no"
|
|
"-DWITH_EDITLINE=system"
|
|
"-DWITH_LIBEVENT=system"
|
|
"-DWITH_LZ4=system"
|
|
"-DWITH_PROTOBUF=system"
|
|
"-DWITH_ZLIB=system"
|
|
"-DWITH_ARCHIVE_STORAGE_ENGINE=yes"
|
|
"-DWITH_BLACKHOLE_STORAGE_ENGINE=yes"
|
|
"-DWITH_FEDERATED_STORAGE_ENGINE=yes"
|
|
"-DHAVE_IPV6=yes"
|
|
"-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
|
|
"-DMYSQL_DATADIR=/var/lib/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_MYSQLTESTDIR="
|
|
"-DINSTALL_DOCDIR=share/mysql/docs"
|
|
"-DINSTALL_SHAREDIR=share/mysql"
|
|
];
|
|
|
|
CXXFLAGS = "-fpermissive -std=c++11";
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
|
|
|
prePatch = ''
|
|
sed -i -e "s|/usr/bin/libtool|libtool|" cmake/merge_archives.cmake.in
|
|
'';
|
|
postInstall = ''
|
|
moveToOutput "lib/*.a" $static
|
|
ln -s libmysqlclient${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libmysqlclient_r${stdenv.hostPlatform.extensions.sharedLibrary}
|
|
'';
|
|
|
|
passthru = {
|
|
client = self;
|
|
connector-c = self;
|
|
server = self;
|
|
mysqlVersion = "5.7";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.mysql.com/;
|
|
description = "The world's most popular open source database";
|
|
platforms = platforms.unix;
|
|
license = with licenses; [
|
|
artistic1 bsd0 bsd2 bsd3 bsdOriginal
|
|
gpl2 lgpl2 lgpl21 mit publicDomain licenses.zlib
|
|
];
|
|
};
|
|
}; in self
|