nixpkgs/pkgs/applications/networking/browsers/opera/default.nix

129 lines
2.2 KiB
Nix
Raw Normal View History

{ alsaLib
, atk
, cairo
, cups
, curl
, dbus
, dpkg
, expat
, fetchurl
, fontconfig
, freetype
2019-05-22 13:03:39 +02:00
, gdk-pixbuf
, glib
2018-07-10 00:34:32 +02:00
, gnome2
, gtk3
2019-07-08 11:39:43 +02:00
, lib
, libX11
2017-02-03 00:11:47 +01:00
, libxcb
, libXScrnSaver
, libXcomposite
, libXcursor
, libXdamage
, libXext
, libXfixes
, libXi
, libXrandr
, libXrender
, libXtst
, libnotify
, libpulseaudio
2018-11-22 12:16:37 +01:00
, libuuid
, nspr
, nss
, pango
, stdenv
, systemd
, at-spi2-atk
2019-05-05 19:10:40 +02:00
, at-spi2-core
}:
let
2019-07-08 11:39:43 +02:00
mirror = "https://get.geo.opera.com/pub/opera/desktop";
2019-07-08 11:39:43 +02:00
rpath = 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
cups
curl.out
dbus.lib
expat.out
fontconfig.lib
freetype.out
2019-05-22 13:03:39 +02:00
gdk-pixbuf.out
glib.out
2018-07-10 00:34:32 +02:00
gnome2.GConf
gtk3.out
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
libnotify.out
2018-11-22 12:16:37 +01:00
libuuid.out
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
at-spi2-atk
2019-05-05 19:10:40 +02:00
at-spi2-core
];
2019-07-08 11:39:43 +02:00
in stdenv.mkDerivation rec {
2019-07-08 11:39:43 +02:00
pname = "opera";
version = "62.0.3331.43";
2017-11-05 18:17:31 +01:00
src = fetchurl {
2019-07-08 11:39:43 +02:00
url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb";
sha256 = "0zylg32zn6blkgy4bwmjzc26i712lwakahvrd24ncpfa8805f7x7";
2017-11-05 18:17:31 +01:00
};
unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc .";
installPhase = ''
mkdir --parent $out
mv * $out/
mv $out/lib/*/opera/*.so $out/lib/
'';
postFixup = ''
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
'';
2019-07-08 11:39:43 +02:00
meta = with lib; {
homepage = "https://www.opera.com";
description = "Web browser";
2017-11-05 18:17:31 +01:00
platforms = [ "x86_64-linux" ];
2019-07-08 11:39:43 +02:00
license = licenses.unfree;
};
}