Skip to content

Commit

Permalink
Merge pull request #64439 from xrelkd/update/opera
Browse files Browse the repository at this point in the history
opera: 60.0.3255.170 -> 62.0.3331.43
  • Loading branch information
worldofpeace committed Jul 9, 2019
2 parents bf7ab59 + 87bc261 commit 38c7c5d
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions pkgs/applications/networking/browsers/opera/default.nix
Expand Up @@ -13,6 +13,7 @@
, glib
, gnome2
, gtk3
, lib
, libX11
, libxcb
, libXScrnSaver
Expand All @@ -39,10 +40,9 @@

let

mirror = https://get.geo.opera.com/pub/opera/desktop;
version = "60.0.3255.170";
mirror = "https://get.geo.opera.com/pub/opera/desktop";

rpath = stdenv.lib.makeLibraryPath [
rpath = lib.makeLibraryPath [

# These provide shared libraries loaded when starting. If one is missing,
# an error is shown in stderr.
Expand Down Expand Up @@ -90,13 +90,14 @@ let
at-spi2-core
];

in stdenv.mkDerivation {
in stdenv.mkDerivation rec {

name = "opera-${version}";
pname = "opera";
version = "62.0.3331.43";

src = fetchurl {
url = "${mirror}/${version}/linux/opera-stable_${version}_amd64.deb";
sha256 = "04bcy9qhrhps3712k229yn58ak2j93wcp613zd6l2zxb8a286991";
url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb";
sha256 = "0zylg32zn6blkgy4bwmjzc26i712lwakahvrd24ncpfa8805f7x7";
};

unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc .";
Expand All @@ -118,10 +119,10 @@ in stdenv.mkDerivation {
done
'';

meta = {
homepage = https://www.opera.com;
meta = with lib; {
homepage = "https://www.opera.com";
description = "Web browser";
platforms = [ "x86_64-linux" ];
license = stdenv.lib.licenses.unfree;
license = licenses.unfree;
};
}

0 comments on commit 38c7c5d

Please sign in to comment.