Merge pull request #90186 from 7c6f434c/fix-mplayer

mplayer: fix build by forcing -lfreetype
gstqt5
Michael Raskin 2020-06-12 19:12:29 +00:00 committed by GitHub
commit 6541ef3267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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";