2016-10-18 14:52:43 +02:00
|
|
|
{ alsaLib
|
|
|
|
, atk
|
|
|
|
, cairo
|
|
|
|
, cups
|
|
|
|
, curl
|
|
|
|
, dbus
|
|
|
|
, dpkg
|
|
|
|
, expat
|
|
|
|
, fetchurl
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
2019-05-22 13:03:39 +02:00
|
|
|
, gdk-pixbuf
|
2016-10-18 14:52:43 +02:00
|
|
|
, glib
|
2018-07-10 00:34:32 +02:00
|
|
|
, gnome2
|
2017-07-09 20:23:48 +02:00
|
|
|
, gtk3
|
2019-07-08 11:39:43 +02:00
|
|
|
, lib
|
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
|
2019-05-05 19:10:40 +02:00
|
|
|
, at-spi2-core
|
2019-10-03 16:30:22 +02:00
|
|
|
, autoPatchelfHook
|
|
|
|
, wrapGAppsHook
|
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
|
|
|
|
2019-07-08 11:39:43 +02:00
|
|
|
mirror = "https://get.geo.opera.com/pub/opera/desktop";
|
2016-10-18 14:52:43 +02:00
|
|
|
|
2019-07-08 11:39:43 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2016-10-18 14:52:43 +02:00
|
|
|
|
2019-07-08 11:39:43 +02:00
|
|
|
pname = "opera";
|
2020-05-06 05:23:12 +02:00
|
|
|
version = "68.0.3618.63";
|
2007-11-28 03:10:27 +01:00
|
|
|
|
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";
|
2020-05-06 05:23:12 +02:00
|
|
|
sha256 = "1643043ywz94x2yr7xyw7krfq53iwkr8qxlbydzq6zb2zina7jxd";
|
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
|
|
|
|
2019-10-03 16:30:22 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoPatchelfHook
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
alsaLib
|
|
|
|
at-spi2-atk
|
|
|
|
at-spi2-core
|
|
|
|
atk
|
|
|
|
cairo
|
|
|
|
cups
|
|
|
|
curl
|
|
|
|
dbus
|
|
|
|
expat
|
|
|
|
fontconfig.lib
|
|
|
|
freetype
|
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
|
|
|
gnome2.GConf
|
|
|
|
gtk3
|
|
|
|
libX11
|
|
|
|
libXScrnSaver
|
|
|
|
libXcomposite
|
|
|
|
libXcursor
|
|
|
|
libXdamage
|
|
|
|
libXext
|
|
|
|
libXfixes
|
|
|
|
libXi
|
|
|
|
libXrandr
|
|
|
|
libXrender
|
|
|
|
libXtst
|
|
|
|
libnotify
|
|
|
|
libuuid
|
|
|
|
libxcb
|
|
|
|
nspr
|
|
|
|
nss
|
|
|
|
pango
|
|
|
|
stdenv.cc.cc.lib
|
|
|
|
];
|
|
|
|
|
|
|
|
runtimeDependencies = [
|
|
|
|
# Works fine without this except there is no sound.
|
|
|
|
libpulseaudio.out
|
|
|
|
|
|
|
|
# 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.
|
2020-08-12 20:12:30 +02:00
|
|
|
(lib.getLib systemd)
|
2019-10-03 16:30:22 +02:00
|
|
|
];
|
|
|
|
|
2011-09-28 21:26:00 +02:00
|
|
|
installPhase = ''
|
2019-10-03 16:30:22 +02:00
|
|
|
mkdir -p $out
|
|
|
|
cp -r . $out/
|
2016-10-18 14:52:43 +02:00
|
|
|
mv $out/lib/*/opera/*.so $out/lib/
|
|
|
|
'';
|
2011-09-28 21:26:00 +02:00
|
|
|
|
2019-07-08 11:39:43 +02:00
|
|
|
meta = with lib; {
|
|
|
|
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" ];
|
2019-07-08 11:39:43 +02:00
|
|
|
license = licenses.unfree;
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2006-02-10 13:15:04 +01:00
|
|
|
}
|