summary refs log tree commit diff
path: root/pkgs/applications/video/mplayer
diff options
context:
space:
mode:
authorJames Cook <james.cook@utoronto.ca>2015-03-08 23:58:48 -0700
committerJames Cook <james.cook@utoronto.ca>2015-03-08 23:58:48 -0700
commit7b67e3fe35410e3768aa52ed764af3ed40b59625 (patch)
treed593a35166ef01f7b489e84888382c53025d8e23 /pkgs/applications/video/mplayer
parent32ee876647124410c16a26162f555a3f498c07fd (diff)
downloadnixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.tar
nixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.tar.gz
nixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.tar.bz2
nixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.tar.lz
nixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.tar.xz
nixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.tar.zst
nixlib-7b67e3fe35410e3768aa52ed764af3ed40b59625.zip
Enable aalib support in mplayer.
Diffstat (limited to 'pkgs/applications/video/mplayer')
-rw-r--r--pkgs/applications/video/mplayer/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix
index dec3a5fc28da..86e5d9cb9eb0 100644
--- a/pkgs/applications/video/mplayer/default.nix
+++ b/pkgs/applications/video/mplayer/default.nix
@@ -1,4 +1,5 @@
 { stdenv, fetchurl, pkgconfig, freetype, yasm
+, aalibSupport ? true, aalib ? null
 , fontconfigSupport ? true, fontconfig ? null, freefont_ttf ? null
 , fribidiSupport ? true, fribidi ? null
 , x11Support ? true, libX11 ? null, libXext ? null, mesa ? null
@@ -103,6 +104,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = with stdenv.lib;
     [ pkgconfig freetype ]
+    ++ optional aalibSupport aalib
     ++ optional fontconfigSupport fontconfig
     ++ optional fribidiSupport fribidi
     ++ optionals x11Support [ libX11 libXext mesa ]