2016-10-18 13:52:43 +01:00
|
|
|
{ alsaLib
|
|
|
|
, atk
|
|
|
|
, cairo
|
|
|
|
, cups
|
|
|
|
, curl
|
|
|
|
, dbus
|
|
|
|
, dpkg
|
|
|
|
, expat
|
|
|
|
, fetchurl
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
2019-05-22 12:03:39 +01:00
|
|
|
, gdk-pixbuf
|
2016-10-18 13:52:43 +01:00
|
|
|
, glib
|
2018-07-09 23:34:32 +01:00
|
|
|
, gnome2
|
2017-07-09 19:23:48 +01:00
|
|
|
, gtk3
|
2019-07-08 10:39:43 +01:00
|
|
|
, lib
|
2016-10-18 13:52:43 +01:00
|
|
|
, libX11
|
2017-02-02 23:11:47 +00:00
|
|
|
, libxcb
|
2016-10-18 13:52:43 +01:00
|
|
|
, libXScrnSaver
|
|
|
|
, libXcomposite
|
|
|
|
, libXcursor
|
|
|
|
, libXdamage
|
|
|
|
, libXext
|
|
|
|
, libXfixes
|
|
|
|
, libXi
|
|
|
|
, libXrandr
|
|
|
|
, libXrender
|
|
|
|
, libXtst
|
|
|
|
, libnotify
|
|
|
|
, libpulseaudio
|
2018-11-22 11:16:37 +00:00
|
|
|
, libuuid
|
2016-10-18 13:52:43 +01:00
|
|
|
, nspr
|
|
|
|
, nss
|
|
|
|
, pango
|
|
|
|
, stdenv
|
|
|
|
, systemd
|
2018-06-17 17:23:15 +01:00
|
|
|
, at-spi2-atk
|
2019-05-05 18:10:40 +01:00
|
|
|
, at-spi2-core
|
2019-10-03 15:30:22 +01:00
|
|
|
, autoPatchelfHook
|
|
|
|
, wrapGAppsHook
|
2009-05-13 15:47:10 +01:00
|
|
|
}:
|
2006-02-10 12:15:04 +00:00
|
|
|
|
2011-09-28 20:26:00 +01:00
|
|
|
let
|
2006-09-29 10:06:56 +01:00
|
|
|
|
2019-07-08 10:39:43 +01:00
|
|
|
mirror = "https://get.geo.opera.com/pub/opera/desktop";
|
2016-10-18 13:52:43 +01:00
|
|
|
|
2019-07-08 10:39:43 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2016-10-18 13:52:43 +01:00
|
|
|
|
2019-07-08 10:39:43 +01:00
|
|
|
pname = "opera";
|
2020-05-06 04:23:12 +01:00
|
|
|
version = "68.0.3618.63";
|
2007-11-28 02:10:27 +00:00
|
|
|
|
2017-11-05 17:17:31 +00:00
|
|
|
src = fetchurl {
|
2019-07-08 10:39:43 +01:00
|
|
|
url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb";
|
2020-05-06 04:23:12 +01:00
|
|
|
sha256 = "1643043ywz94x2yr7xyw7krfq53iwkr8qxlbydzq6zb2zina7jxd";
|
2017-11-05 17:17:31 +00:00
|
|
|
};
|
2006-02-10 12:15:04 +00:00
|
|
|
|
2016-10-18 13:52:43 +01:00
|
|
|
unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc .";
|
2011-09-28 20:26:00 +01:00
|
|
|
|
2019-10-03 15:30:22 +01: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 19:12:30 +01:00
|
|
|
(lib.getLib systemd)
|
2019-10-03 15:30:22 +01:00
|
|
|
];
|
|
|
|
|
2011-09-28 20:26:00 +01:00
|
|
|
installPhase = ''
|
2019-10-03 15:30:22 +01:00
|
|
|
mkdir -p $out
|
|
|
|
cp -r . $out/
|
2016-10-18 13:52:43 +01:00
|
|
|
mv $out/lib/*/opera/*.so $out/lib/
|
|
|
|
'';
|
2011-09-28 20:26:00 +01:00
|
|
|
|
2019-07-08 10:39:43 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.opera.com";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Web browser";
|
2017-11-05 17:17:31 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2019-07-08 10:39:43 +01:00
|
|
|
license = licenses.unfree;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2006-02-10 12:15:04 +00:00
|
|
|
}
|