summary refs log tree commit diff
path: root/pkgs/applications/video/MPlayer/trunk.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/MPlayer/trunk.nix')
-rw-r--r--pkgs/applications/video/MPlayer/trunk.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/video/MPlayer/trunk.nix b/pkgs/applications/video/MPlayer/trunk.nix
index 785ffe727db..19da6d91b7c 100644
--- a/pkgs/applications/video/MPlayer/trunk.nix
+++ b/pkgs/applications/video/MPlayer/trunk.nix
@@ -6,7 +6,7 @@
 , libXinerama ? null, libXrandr ? null, libdvdnav ? null, jackaudio ? null
 , cdparanoia ? null, cddaSupport ? true, jackaudioSupport ? true
 , mesa, pkgconfig
-, sourceByName
+, sourceFromHead
 }:
 
 assert alsaSupport -> alsa != null;
@@ -35,7 +35,10 @@ stdenv.mkDerivation {
 
   name = "mplayer-trunk";
 
-  src = sourceByName "MPlayer";
+  # REGION AUTO UPDATE:     { name="MPlayer"; type = "svn"; url="svn://svn.mplayerhq.hu/mplayer/trunk"; }
+  src= sourceFromHead "MPlayer-29990.tar.gz"
+               (fetchurl { url = "http://mawercer.de/~nix/repos/MPlayer-29990.tar.gz"; sha256 = "8d9ac59e7cc3e2bc9ca46281ac2c268d460e041aceac056b600205c8c5235169"; });
+  # END
 
   buildInputs =
     [x11 libXv freetype zlib mesa pkgconfig]