mariadb: Don't install mysqlbug

This causes a dependency on gcc.
wip/yesman
Eelco Dolstra 8 years ago
parent 50e2161ee1
commit 33da338bde
  1. 4
      pkgs/servers/sql/mariadb/default.nix

@ -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
'';
});

Loading…
Cancel
Save