Merge pull request #164109 from NickCao/mysql57-closure

mysql57: reduce closure size
This commit is contained in:
Rick van Schijndel 2022-06-11 17:59:34 +02:00 committed by GitHub
commit 7abe5b90be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, cmake, bison, pkg-config
{ lib, stdenv, fetchurl, cmake, bison, pkg-config, nukeReferences
, boost, libedit, libevent, lz4, ncurses, openssl, protobuf, readline, zlib, perl
, cctools, CoreServices, developer_cmds
, libtirpc, rpcsvc-proto, nixosTests
@ -21,7 +21,7 @@ self = stdenv.mkDerivation rec {
export PATH=$PATH:$TMPDIR
'';
nativeBuildInputs = [ bison cmake pkg-config ]
nativeBuildInputs = [ bison cmake pkg-config nukeReferences ]
++ lib.optionals (!stdenv.isDarwin) [ rpcsvc-proto ];
buildInputs = [ boost libedit libevent lz4 ncurses openssl protobuf readline zlib ]
@ -66,6 +66,7 @@ self = stdenv.mkDerivation rec {
sed -i -e "s|/usr/bin/libtool|libtool|" cmake/merge_archives.cmake.in
'';
postInstall = ''
nuke-refs "$out/share/mysql/docs/INFO_BIN"
moveToOutput "lib/*.a" $static
ln -s libmysqlclient${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libmysqlclient_r${stdenv.hostPlatform.extensions.sharedLibrary}
'';