summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-09-29 09:06:56 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-09-29 09:06:56 +0000
commitd4f1a3ef8652545aaa41a608662db82e78c0ec82 (patch)
tree4170b009188df9bcecef8d96f056c6f504e3c8b4 /pkgs/applications
parente60efca33d469991cadeb9fd6a5481fd39382db2 (diff)
downloadnixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.tar
nixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.tar.gz
nixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.tar.bz2
nixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.tar.lz
nixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.tar.xz
nixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.tar.zst
nixlib-d4f1a3ef8652545aaa41a608662db82e78c0ec82.zip
* Opera 9.02.
svn path=/nixpkgs/trunk/; revision=6622
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/opera/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/pkgs/applications/networking/browsers/opera/default.nix b/pkgs/applications/networking/browsers/opera/default.nix
index f108a9262202..39339dfd8f3c 100644
--- a/pkgs/applications/networking/browsers/opera/default.nix
+++ b/pkgs/applications/networking/browsers/opera/default.nix
@@ -1,18 +1,23 @@
-{stdenv, fetchurl, qt, zlib, libX11, motif ? null, libXt ? null, libXext ? null}:
+{ stdenv, fetchurl, qt, zlib, libX11, libXext, libSM, libICE, libstdcpp5
+, motif ? null, libXt ? null}:
 
 assert stdenv.system == "i686-linux";
-assert motif != null -> libXt != null && libXext != null;
+assert motif != null -> libXt != null;
 
 # !!! Add Xinerama and Xrandr dependencies?  Or should those be in Qt?
 
+# Hm, does Opera 9.x still use Motif for anything?
+
 stdenv.mkDerivation {
-  name = "opera-8.51-20051114.6";
+  name = "opera-9.02-20060919.5";
 
   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";
+    url = ftp://ftp.tiscali.nl/pub/mirrors/opera/linux/902/final/en/i386/shared/opera-9.02-20060919.5-shared-qt.i386-en.tar.bz2;
+    md5 = "327d0bf1f3c4eedd47b444b36c9091f6";
   };
 
-  libPath = [qt zlib libX11 motif libXt libXext];
+  libPath =
+    [qt motif zlib libX11 libXext libSM libICE libstdcpp5]
+    ++ (if motif != null then [motif libXt ] else []);
 }