summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/xine-ui/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/video/xine-ui/default.nix b/pkgs/applications/video/xine-ui/default.nix
index 3c6d42ffc732..a6ce153b558e 100644
--- a/pkgs/applications/video/xine-ui/default.nix
+++ b/pkgs/applications/video/xine-ui/default.nix
@@ -1,11 +1,14 @@
 {stdenv, fetchurl, x11, xineLib, libpng}:
 
 stdenv.mkDerivation {
-  name = "xine-ui-0.99.3";
+  name = "xine-ui-0.99.4";
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/xine-ui-0.99.3.tar.gz;
-    md5 = "aa7805a93e511e3d67dc1bf09a71fcdd";
+    url = http://surfnet.dl.sourceforge.net/sourceforge/xine/xine-ui-0.99.4.tar.gz;
+    md5 = "90ea1f76747e9788a30a73e7f4a76cf6";
   };
-  buildInputs = [x11 xineLib libpng];
+  buildInputs = [
+    x11 xineLib libpng
+    (if xineLib.xineramaSupport then xineLib.libXinerama else null)
+  ];
   configureFlags = "--without-readline";
 }