summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-06-29 15:46:24 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-06-29 15:46:24 +0000
commit186c269c70b728db146fcef95237c0d8b5bb2b61 (patch)
tree6727d7e796d0a4b3403cab8ec23e157a35cee4c8 /pkgs/applications/video
parent552356c46e511ac6b156858ac56f22a04a87db9c (diff)
downloadnixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.tar
nixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.tar.gz
nixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.tar.bz2
nixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.tar.lz
nixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.tar.xz
nixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.tar.zst
nixlib-186c269c70b728db146fcef95237c0d8b5bb2b61.zip
* Latest version.
svn path=/nixpkgs/trunk/; revision=5542
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/RealPlayer/builder.sh2
-rw-r--r--pkgs/applications/video/RealPlayer/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/RealPlayer/builder.sh b/pkgs/applications/video/RealPlayer/builder.sh
index c8796b4d9390..45892653b65b 100644
--- a/pkgs/applications/video/RealPlayer/builder.sh
+++ b/pkgs/applications/video/RealPlayer/builder.sh
@@ -3,7 +3,7 @@ source $makeWrapper
 
 ensureDir $out/real
 
-skip=143209
+skip=143273 # Look for "BZh91" in the executable. 
 
 (dd bs=1 count=$skip of=/dev/null && dd) < $src | (cd $out/real && tar xvfj -)
 
diff --git a/pkgs/applications/video/RealPlayer/default.nix b/pkgs/applications/video/RealPlayer/default.nix
index 0b74ca937bea..cc965fee81f7 100644
--- a/pkgs/applications/video/RealPlayer/default.nix
+++ b/pkgs/applications/video/RealPlayer/default.nix
@@ -9,8 +9,8 @@ assert stdenv.system == "i686-linux";
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://software-dl.real.com/01f1001c4b44265b0020/unix/RealPlayer10GOLD.bin;
-    md5 = "5f04938c28395ace2af822dd1bd57f5a";
+    url = http://software-dl.real.com/29f67eab92b913a6d805/unix/RealPlayer10GOLD.bin;
+    md5 = "3ef0d073320106d1bf75bdac8e4b250e";
   };
 
   makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;