summary refs log tree commit diff
path: root/pkgs/applications/video/RealPlayer/default.nix
blob: 968846f1dcb1bad22fd25f23ed20f6f72683f2f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, libstdcpp5, glib, pango, atk, gtk, libX11, makeWrapper}:

# Note that RealPlayer 10 need libstdc++.so.5, i.e., GCC 3.3, not 3.4.

assert stdenv.system == "i686-linux";

(stdenv.mkDerivation {
  name = "RealPlayer-10.0.8.805-GOLD";

  builder = ./builder.sh;
  src = fetchurl {
    url = http://software-dl.real.com/25ae61d70a6855a52c14/unix/RealPlayer10GOLD.bin;
    md5 = "d28b31261059231a3e93c7466f8153e6";
  };

  inherit libstdcpp5 makeWrapper;
  libPath = [libstdcpp5 glib pango atk gtk libX11];
  
}) // {mozillaPlugin = "/real/mozilla";}