summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2020-06-12 19:12:29 +0000
committerGitHub <noreply@github.com>2020-06-12 19:12:29 +0000
commit6541ef326755f7da11a3ff2f15d222a1f523f9ce (patch)
tree5fc213a526ec5076709644628a948beef4519cdd /pkgs
parent5460d53af19d652578c8b32a480abeb766497534 (diff)
parentaef898b0a2c5e0b6891919d995b40ebcde599662 (diff)
downloadnixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.tar
nixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.tar.gz
nixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.tar.bz2
nixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.tar.lz
nixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.tar.xz
nixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.tar.zst
nixpkgs-6541ef326755f7da11a3ff2f15d222a1f523f9ce.zip
Merge pull request #90186 from 7c6f434c/fix-mplayer
mplayer: fix build by forcing -lfreetype
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/mplayer/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix
index 02c88b92919..f00b5aabf97 100644
--- a/pkgs/applications/video/mplayer/default.nix
+++ b/pkgs/applications/video/mplayer/default.nix
@@ -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";