1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 22:16:09 -04:00
nixpkgs/pkgs/applications/networking/browsers/opera/default.nix
Eelco Dolstra 26f98860c1 * Opera 8.51 (on Linux).
svn path=/nixpkgs/trunk/; revision=4782
2006-02-10 12:15:04 +00:00

17 lines
508 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;
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];
}