Skip to content

Commit

Permalink
mariadb: Don't install static libraries
Browse files Browse the repository at this point in the history
Issue #8990.
  • Loading branch information
edolstra committed Jul 26, 2015
1 parent 8799287 commit c4a399f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/servers/sql/mariadb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ stdenv.mkDerivation rec {
# Make sure to propagate lib for compatability
mkdir -p $out/nix-support
echo "$lib" > $out/nix-support/propagated-native-build-inputs
# Don't install static libraries.
rm $lib/lib/libmysqlclient.a $lib/lib/libmysqld.a
'';

passthru.mysqlVersion = "5.6";
Expand Down

1 comment on commit c4a399f

@jgeerds
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the reason why our kde tests fail?

Please sign in to comment.