nixpkgs/pkgs/applications/networking/browsers/opera/default.nix
Eelco Dolstra dff1c50b1b * Typo: "--enable-swg" -> "--enable-svg".
svn path=/nixpkgs/trunk/; revision=4928
2006-02-28 12:03:35 +00:00

19 lines
580 B
Nix

{stdenv, fetchurl, qt, zlib, libX11, motif ? null, libXt ? null, libXext ? null}:
assert stdenv.system == "i686-linux";
assert motif != null -> libXt != null && libXext != null;
# !!! Add Xinerama and Xrandr dependencies? Or should those be in Qt?
stdenv.mkDerivation {
name = "opera-8.51-20051114.6";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.tiscali.nl/pub/mirrors/opera/linux/851/final/en/i386/opera-8.51-20051114.6-shared-qt.i386-en.tar.bz2;
md5 = "bf930c45023035ee4258b13b707176c2";
};
libPath = [qt zlib libX11 motif libXt libXext];
}