mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
147 lines
2.5 KiB
Nix
147 lines
2.5 KiB
Nix
{ alsa-lib
|
|
, atk
|
|
, cairo
|
|
, cups
|
|
, curl
|
|
, dbus
|
|
, dpkg
|
|
, expat
|
|
, fetchurl
|
|
, fontconfig
|
|
, freetype
|
|
, gdk-pixbuf
|
|
, glib
|
|
, gtk3
|
|
, gtk4
|
|
, lib
|
|
, libX11
|
|
, libxcb
|
|
, libXScrnSaver
|
|
, libXcomposite
|
|
, libXcursor
|
|
, libXdamage
|
|
, libXext
|
|
, libXfixes
|
|
, libXi
|
|
, libXrandr
|
|
, libXrender
|
|
, libXtst
|
|
, libdrm
|
|
, libnotify
|
|
, libpulseaudio
|
|
, libuuid
|
|
, libxshmfence
|
|
, mesa
|
|
, nspr
|
|
, nss
|
|
, pango
|
|
, stdenv
|
|
, systemd
|
|
, at-spi2-atk
|
|
, at-spi2-core
|
|
, autoPatchelfHook
|
|
, wrapGAppsHook3
|
|
, qt6
|
|
, proprietaryCodecs ? false
|
|
, vivaldi-ffmpeg-codecs
|
|
}:
|
|
|
|
let
|
|
mirror = "https://get.geo.opera.com/pub/opera/desktop";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "opera";
|
|
version = "114.0.5282.102";
|
|
|
|
src = fetchurl {
|
|
url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb";
|
|
hash = "sha256-PBbozIdA+cfEzGIyL1P+25FZtrnd7ldctOtZYomKd/8=";
|
|
};
|
|
|
|
unpackPhase = "dpkg-deb -x $src .";
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
autoPatchelfHook
|
|
wrapGAppsHook3
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
at-spi2-atk
|
|
at-spi2-core
|
|
atk
|
|
cairo
|
|
cups
|
|
curl
|
|
dbus
|
|
expat
|
|
fontconfig.lib
|
|
freetype
|
|
gdk-pixbuf
|
|
glib
|
|
gtk3
|
|
libX11
|
|
libXScrnSaver
|
|
libXcomposite
|
|
libXcursor
|
|
libXdamage
|
|
libXext
|
|
libXfixes
|
|
libXi
|
|
libXrandr
|
|
libXrender
|
|
libXtst
|
|
libdrm
|
|
libnotify
|
|
libuuid
|
|
libxcb
|
|
libxshmfence
|
|
mesa
|
|
nspr
|
|
nss
|
|
pango
|
|
(lib.getLib stdenv.cc.cc)
|
|
qt6.qtbase
|
|
];
|
|
|
|
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.
|
|
(lib.getLib systemd)
|
|
|
|
# Error at startup:
|
|
# "Illegal instruction (core dumped)"
|
|
gtk3
|
|
gtk4
|
|
] ++ lib.optionals proprietaryCodecs [
|
|
vivaldi-ffmpeg-codecs
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -r usr $out
|
|
cp -r usr/share $out/share
|
|
|
|
# we already using QT6, autopatchelf wants to patch this as well
|
|
rm $out/usr/lib/x86_64-linux-gnu/opera/libqt5_shim.so
|
|
ln -s $out/usr/bin/opera $out/bin/opera
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.opera.com";
|
|
description = "Faster, safer and smarter web browser";
|
|
platforms = [ "x86_64-linux" ];
|
|
license = licenses.unfree;
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with maintainers; [ kindrowboat ];
|
|
};
|
|
}
|