2016-10-18 14:52:43 +02:00
|
|
|
{ alsaLib
|
|
|
|
, atk
|
|
|
|
, cairo
|
|
|
|
, cups
|
|
|
|
, curl
|
|
|
|
, dbus
|
|
|
|
, dpkg
|
|
|
|
, expat
|
|
|
|
, fetchurl
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, gdk_pixbuf
|
|
|
|
, glib
|
2018-07-10 00:34:32 +02:00
|
|
|
, gnome2
|
2017-07-09 20:23:48 +02:00
|
|
|
, gtk3
|
2016-10-18 14:52:43 +02:00
|
|
|
, libX11
|
2017-02-03 00:11:47 +01:00
|
|
|
, libxcb
|
2016-10-18 14:52:43 +02:00
|
|
|
, libXScrnSaver
|
|
|
|
, libXcomposite
|
|
|
|
, libXcursor
|
|
|
|
, libXdamage
|
|
|
|
, libXext
|
|
|
|
, libXfixes
|
|
|
|
, libXi
|
|
|
|
, libXrandr
|
|
|
|
, libXrender
|
|
|
|
, libXtst
|
|
|
|
, libnotify
|
|
|
|
, libpulseaudio
|
2018-11-22 12:16:37 +01:00
|
|
|
, libuuid
|
2016-10-18 14:52:43 +02:00
|
|
|
, nspr
|
|
|
|
, nss
|
|
|
|
, pango
|
|
|
|
, stdenv
|
|
|
|
, systemd
|
2018-06-17 18:23:15 +02:00
|
|
|
, at-spi2-atk
|
2009-05-13 16:47:10 +02:00
|
|
|
}:
|
2006-02-10 13:15:04 +01:00
|
|
|
|
2011-09-28 21:26:00 +02:00
|
|
|
let
|
2006-09-29 11:06:56 +02:00
|
|
|
|
2016-10-18 14:52:43 +02:00
|
|
|
mirror = https://get.geo.opera.com/pub/opera/desktop;
|
2018-11-22 12:16:37 +01:00
|
|
|
version = "56.0.3051.99";
|
2016-10-18 14:52:43 +02:00
|
|
|
|
|
|
|
rpath = stdenv.lib.makeLibraryPath [
|
|
|
|
|
|
|
|
# These provide shared libraries loaded when starting. If one is missing,
|
|
|
|
# an error is shown in stderr.
|
|
|
|
alsaLib.out
|
|
|
|
atk.out
|
|
|
|
cairo.out
|
2017-03-12 18:09:39 +01:00
|
|
|
cups
|
2016-10-18 14:52:43 +02:00
|
|
|
curl.out
|
|
|
|
dbus.lib
|
|
|
|
expat.out
|
|
|
|
fontconfig.lib
|
|
|
|
freetype.out
|
|
|
|
gdk_pixbuf.out
|
|
|
|
glib.out
|
2018-07-10 00:34:32 +02:00
|
|
|
gnome2.GConf
|
2017-07-09 20:23:48 +02:00
|
|
|
gtk3.out
|
2016-10-18 14:52:43 +02:00
|
|
|
libX11.out
|
|
|
|
libXScrnSaver.out
|
|
|
|
libXcomposite.out
|
|
|
|
libXcursor.out
|
|
|
|
libXdamage.out
|
|
|
|
libXext.out
|
|
|
|
libXfixes.out
|
|
|
|
libXi.out
|
|
|
|
libXrandr.out
|
|
|
|
libXrender.out
|
|
|
|
libXtst.out
|
2017-02-03 00:11:47 +01:00
|
|
|
libxcb.out
|
2016-10-18 14:52:43 +02:00
|
|
|
libnotify.out
|
2018-11-22 12:16:37 +01:00
|
|
|
libuuid.out
|
2016-10-18 14:52:43 +02:00
|
|
|
nspr.out
|
|
|
|
nss.out
|
|
|
|
pango.out
|
|
|
|
stdenv.cc.cc.lib
|
|
|
|
|
|
|
|
# This is a little tricky. Without it the app starts then crashes. Then it
|
|
|
|
# brings up the crash report, which also crashes. `strace -f` hints at a
|
|
|
|
# missing libudev.so.0.
|
|
|
|
systemd.lib
|
|
|
|
|
|
|
|
# Works fine without this except there is no sound.
|
|
|
|
libpulseaudio.out
|
2018-06-17 18:23:15 +02:00
|
|
|
|
|
|
|
at-spi2-atk
|
2016-10-18 14:52:43 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "opera-${version}";
|
2007-11-28 03:10:27 +01:00
|
|
|
|
2017-11-05 18:17:31 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${mirror}/${version}/linux/opera-stable_${version}_amd64.deb";
|
2018-11-22 12:16:37 +01:00
|
|
|
sha256 = "1mf4lpb66w63kafjni5caq9k3lmsqd85161q29z5lr1s2cx9qqm8";
|
2017-11-05 18:17:31 +01:00
|
|
|
};
|
2006-02-10 13:15:04 +01:00
|
|
|
|
2016-10-18 14:52:43 +02:00
|
|
|
unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc .";
|
2011-09-28 21:26:00 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-10-18 14:52:43 +02:00
|
|
|
mkdir --parent $out
|
|
|
|
mv * $out/
|
|
|
|
mv $out/lib/*/opera/*.so $out/lib/
|
|
|
|
'';
|
2011-09-28 21:26:00 +02:00
|
|
|
|
|
|
|
postFixup = ''
|
2016-10-18 14:52:43 +02:00
|
|
|
find $out -executable -type f \
|
|
|
|
| while read f
|
|
|
|
do
|
|
|
|
patchelf \
|
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
|
|
--set-rpath "$out/lib:${rpath}" \
|
|
|
|
"$f"
|
|
|
|
done
|
|
|
|
'';
|
2009-05-13 16:47:10 +02:00
|
|
|
|
2008-01-30 20:49:42 +01:00
|
|
|
meta = {
|
2019-04-15 01:25:45 +02:00
|
|
|
homepage = https://www.opera.com;
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Web browser";
|
2017-11-05 18:17:31 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2006-02-10 13:15:04 +01:00
|
|
|
}
|