2005-03-12 13:53:03 +01:00
|
|
|
{stdenv, fetchurl, libstdcpp5, glib, pango, atk, gtk, libX11}:
|
|
|
|
|
|
|
|
# Note that RealPlayer 10 need libstdc++.so.5, i.e., GCC 3.3, not 3.4.
|
|
|
|
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
|
2005-03-12 14:35:27 +01:00
|
|
|
(stdenv.mkDerivation {
|
2006-09-25 17:12:51 +02:00
|
|
|
name = "RealPlayer-10.0.8.805-GOLD";
|
2005-03-12 13:53:03 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-09-25 17:12:51 +02:00
|
|
|
url = http://software-dl.real.com/25ae61d70a6855a52c14/unix/RealPlayer10GOLD.bin;
|
|
|
|
md5 = "d28b31261059231a3e93c7466f8153e6";
|
2005-03-12 13:53:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
|
|
|
|
|
2005-03-12 14:35:27 +01:00
|
|
|
inherit libstdcpp5;
|
2005-03-12 13:53:03 +01:00
|
|
|
libPath = [libstdcpp5 glib pango atk gtk libX11];
|
2005-03-12 14:35:27 +01:00
|
|
|
|
|
|
|
}) // {mozillaPlugin = "/real/mozilla";}
|