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 {
|
2005-03-12 13:53:03 +01:00
|
|
|
name = "RealPlayer-10.0.3.748-GOLD";
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://software-dl.real.com/12ae5c4cc79d437fa106/unix/RealPlayer10GOLD.bin;
|
|
|
|
md5 = "70a88bcae0ab3e177e6fadecd6b8be24";
|
|
|
|
};
|
|
|
|
|
|
|
|
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";}
|