about summary refs log tree commit diff
path: root/pkgs/applications/video/MPlayer
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-29 19:07:27 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-29 19:07:27 +0000
commit9b6e112573c0990910d8fb624d2343e1d88e55d6 (patch)
treee1acd3eb2ecb8703c88855fbc048144fa46dac33 /pkgs/applications/video/MPlayer
parent27e06147ada76217b411e46090848c911634a43a (diff)
* Enable Xinerama support in MPlayer.
svn path=/nixpkgs/trunk/; revision=4163
Diffstat (limited to 'pkgs/applications/video/MPlayer')
-rw-r--r--pkgs/applications/video/MPlayer/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/video/MPlayer/default.nix b/pkgs/applications/video/MPlayer/default.nix
index e04952e025465..57627f628f46e 100644
--- a/pkgs/applications/video/MPlayer/default.nix
+++ b/pkgs/applications/video/MPlayer/default.nix
@@ -1,20 +1,22 @@
 { alsaSupport ? false, xvSupport ? true, theoraSupport ? false, cacaSupport ? false
+, xineramaSupport ? false
 , stdenv, fetchurl, x11, freetype, zlib
-, alsa ? null, libXv ? null, libtheora ? null, libcaca ? null
+, alsa ? null, libXv ? null, libtheora ? null, libcaca ? null, libXinerama ? null
 }:
 
 assert alsaSupport -> alsa != null;
 assert xvSupport -> libXv != null;
 assert theoraSupport -> libtheora != null;
 assert cacaSupport -> libcaca != null;
+assert xineramaSupport -> libXinerama != null;
 
 stdenv.mkDerivation {
   name = "MPlayer-1.0pre7";
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://www2.mplayerhq.hu/MPlayer/releases/MPlayer-1.0pre7.tar.bz2;
-    md5 = "5fadd6957d3aab989cd760ff38fb8fdf";
+    url = http://www2.mplayerhq.hu/MPlayer/releases/MPlayer-1.0pre7try2.tar.bz2;
+    md5 = "aaca4fd327176c1afb463f0f047ef6f4";
   };
   fonts = fetchurl {
     url = http://nix.cs.uu.nl/dist/tarballs/font-arial-iso-8859-1.tar.bz2;
@@ -31,6 +33,7 @@ stdenv.mkDerivation {
     (if xvSupport then libXv else null)
     (if theoraSupport then libtheora else null)
     (if cacaSupport then libcaca else null)
+    (if xineramaSupport then libXinerama else null)
   ];
 
   configureFlags = if cacaSupport then "--enable-caca" else "--disable-caca";