2007-11-28 03:10:27 +01:00
|
|
|
{ stdenv, fetchurl, qt, zlib, libX11, libXext, libSM, libICE, libstdcpp5, glibc
|
2006-09-29 11:06:56 +02:00
|
|
|
, motif ? null, libXt ? null}:
|
2006-02-10 13:15:04 +01:00
|
|
|
|
2006-09-29 11:06:56 +02:00
|
|
|
assert motif != null -> libXt != null;
|
2006-02-10 13:15:04 +01:00
|
|
|
|
2006-02-28 13:03:35 +01:00
|
|
|
# !!! Add Xinerama and Xrandr dependencies? Or should those be in Qt?
|
|
|
|
|
2006-09-29 11:06:56 +02:00
|
|
|
# Hm, does Opera 9.x still use Motif for anything?
|
|
|
|
|
2007-10-30 02:51:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "9.24-20071015.5";
|
|
|
|
name = "opera-${version}";
|
2006-02-10 13:15:04 +01:00
|
|
|
|
2007-11-28 03:10:27 +01:00
|
|
|
inherit libstdcpp5;
|
|
|
|
|
2006-02-10 13:15:04 +01:00
|
|
|
builder = ./builder.sh;
|
2007-11-28 03:10:27 +01:00
|
|
|
src = if (stdenv.system == "i686-linux") then
|
|
|
|
fetchurl {
|
|
|
|
url = ftp://ftp.task.gda.pl/pub/opera/linux/950b/final/en/i386/shared/opera-9.50b-20071024.5-shared-qt.i386-en.tar.bz2;
|
|
|
|
sha256 = "0vv1q86is9x6vw8fx92wrnvlyn4x29zgk9zjn66rcx37n6grqqah";
|
|
|
|
} else if (stdenv.system == "x86_64-linux") then
|
|
|
|
fetchurl {
|
2008-01-16 03:48:18 +01:00
|
|
|
url = http://snapshot.opera.com/unix/snapshot-1754/x86_64-linux/opera-9.50-20080110.2-shared-qt.x86_64-1754.tar.bz2;
|
|
|
|
sha256 = "08y1ajjncdvbhvcq2izmpgc4fi37bwn43zsw7rz41jf8qhvb5ywv";
|
|
|
|
#url = ftp://ftp.task.gda.pl/pub/opera/linux/950b/final/en/x86_64/opera-9.50-20071024.2-shared-qt.x86_64-1643.tar.bz2;
|
|
|
|
#sha256 = "1gv1r18ar3vz1l24nf8qixjlba1yb5d3xvg3by41i4dy0vlznqn6";
|
|
|
|
#name = opera-9.25-20071214.6-shared-qt.i386-en.tar.gz;
|
|
|
|
#url = http://www.opera.com/download/get.pl?id=30462&location=225¬hanks=yes&sub=marine;
|
|
|
|
#sha256 = "1wnc1s4r5gz73mxs8pgsi9a1msz7x8a8pb1ykb1xgdfn21h69p2p";
|
2007-11-28 03:10:27 +01:00
|
|
|
} else throw "unsupported platform ${stdenv.system} (only i686-linux and x86_64 linux supported yet)";
|
2006-02-10 13:15:04 +01:00
|
|
|
|
2007-11-28 03:10:27 +01:00
|
|
|
# operapluginwrapper seems to require libXt ?
|
|
|
|
# Adding it makes startup faster and omits error messages (on x68)
|
2006-09-29 11:06:56 +02:00
|
|
|
libPath =
|
2007-11-28 03:10:27 +01:00
|
|
|
[glibc qt motif zlib libX11 libXt libXext libSM libICE libstdcpp5]
|
|
|
|
++ (if motif != null then [motif ] else []);
|
2008-01-30 20:49:42 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.opera.com;
|
|
|
|
};
|
2006-02-10 13:15:04 +01:00
|
|
|
}
|