89 lines
2.8 KiB
Nix
89 lines
2.8 KiB
Nix
{ stdenv, fetchurl, zlib, libX11, libXext, libSM, libICE, libXt
|
|
, freetype, fontconfig, libXft, libXrender, libxcb, expat, libXau, libXdmcp
|
|
, libuuid, cups, xz
|
|
, gstreamer, gst_plugins_base, libxml2
|
|
, gtkSupport ? true, glib, gtk, pango, gdk_pixbuf, cairo, atk
|
|
, kdeSupport ? false, qt4, kdelibs
|
|
}:
|
|
|
|
assert stdenv.isLinux && stdenv.cc.isGNU && stdenv.cc.libc != null;
|
|
|
|
let
|
|
mirror = http://get.geo.opera.com/pub/opera;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opera-12.16-1860";
|
|
|
|
src =
|
|
if stdenv.system == "i686-linux" then
|
|
fetchurl {
|
|
url = "${mirror}/linux/1216/${name}.i386.linux.tar.xz";
|
|
sha256 = "df640656a52b7c714faf25de92d84992116ce8f82b7a67afc1121eb3c428489d";
|
|
}
|
|
else if stdenv.system == "x86_64-linux" then
|
|
fetchurl {
|
|
url = "${mirror}/linux/1216/${name}.x86_64.linux.tar.xz";
|
|
sha256 = "b3b5cada3829d2b3b0e2da25e9444ce9dff73dc6692586ce72cfd4f6431e639e";
|
|
}
|
|
else throw "Opera is not supported on ${stdenv.system} (only i686-linux and x86_64 linux are supported)";
|
|
|
|
dontStrip = 1;
|
|
|
|
phases = "unpackPhase installPhase fixupPhase";
|
|
|
|
installPhase = ''
|
|
./install --unattended --prefix $out
|
|
'';
|
|
|
|
buildInputs =
|
|
[ stdenv.cc.cc stdenv.cc.libc zlib libX11 libXt libXext libSM libICE
|
|
libXft freetype fontconfig libXrender libuuid expat
|
|
gstreamer libxml2 gst_plugins_base
|
|
]
|
|
++ stdenv.lib.optionals gtkSupport [ glib gtk pango gdk_pixbuf cairo atk ]
|
|
++ stdenv.lib.optionals kdeSupport [ kdelibs qt4 ];
|
|
|
|
libPath = stdenv.lib.makeLibraryPath buildInputs
|
|
+ stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
|
|
(":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs);
|
|
|
|
preFixup =
|
|
''
|
|
rm $out/bin/uninstall-opera
|
|
find $out/lib/opera -type f | while read f; do
|
|
type=$(readelf -h "$f" 2>/dev/null | sed -n 's/ *Type: *\([A-Z]*\).*/\1/p' || true)
|
|
if [ -z "$type" ]; then
|
|
:
|
|
elif [ $type == "EXEC" ]; then
|
|
echo "patching $f executable <<"
|
|
patchelf \
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${libPath}" \
|
|
"$f"
|
|
elif [ $type == "DYN" ]; then
|
|
echo "patching $f library <<"
|
|
patchelf --set-rpath "${libPath}" "$f"
|
|
else
|
|
echo "Unknown type $type"
|
|
exit 1
|
|
fi
|
|
done
|
|
'';
|
|
|
|
postFixup = ''
|
|
oldRPATH=`patchelf --print-rpath $out/lib/opera/opera`
|
|
patchelf --set-rpath $oldRPATH:${cups.out}/lib $out/lib/opera/opera
|
|
|
|
# This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command
|
|
# It have no reasons to exist in a redistribuable package
|
|
rm $out/share/icons/hicolor/icon-theme.cache
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.opera.com;
|
|
description = "Web browser";
|
|
license = stdenv.lib.licenses.unfree;
|
|
};
|
|
}
|