mariadb: Don't install mysqlbug

This causes a dependency on gcc.
This commit is contained in:
Eelco Dolstra 2016-09-19 19:58:25 +02:00
parent 50e2161ee1
commit 33da338bde

View File

@ -14,7 +14,6 @@ mariadb = everything // {
lib = client; # compat. with the old mariadb split
};
common = rec { # attributes common to both builds
version = "10.1.16";
@ -155,6 +154,9 @@ everything = stdenv.mkDerivation (common // {
postInstall = common.postInstall + ''
rm -r "$out"/{mysql-test,sql-bench,data} # Don't need testing data
rm "$out"/share/man/man1/mysql-test-run.pl.1
# Don't install mysqlbug to prevent a dependency on gcc.
rm $out/bin/mysqlbug
'';
});