mplayer: fix build by forcing -lfreetype

This commit is contained in:
Michael Raskin 2020-06-12 15:30:41 +02:00
parent 80643891c0
commit aef898b0a2

View File

@ -199,6 +199,7 @@ stdenv.mkDerivation rec {
optional fontconfigSupport "-lfontconfig"
++ optional fribidiSupport "-lfribidi"
++ optionals x11Support [ "-lX11" "-lXext" ]
++ [ "-lfreetype" ]
);
installTargets = [ "install" ] ++ stdenv.lib.optional x11Support "install-gui";