eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
75 lines
1.1 KiB
Nix
75 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cinnamon-desktop
|
|
, docbook_xsl
|
|
, exempi
|
|
, gdk-pixbuf
|
|
, glib
|
|
, gobject-introspection
|
|
, gtk3
|
|
, gtk-doc
|
|
, itstool
|
|
, lcms2
|
|
, libexif
|
|
, libjpeg
|
|
, libpeas
|
|
, librsvg
|
|
, libxml2
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, wrapGAppsHook3
|
|
, xapp
|
|
, yelp-tools
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xviewer";
|
|
version = "3.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-Kr3GoroQUzOePJiYeJYE9wrqWKcfX7ncu3tZSxOdnvU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cinnamon-desktop
|
|
docbook_xsl
|
|
gdk-pixbuf
|
|
gobject-introspection
|
|
gtk-doc
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook3
|
|
yelp-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
exempi
|
|
glib
|
|
gtk3
|
|
lcms2
|
|
libexif
|
|
libjpeg
|
|
libpeas
|
|
librsvg
|
|
libxml2
|
|
xapp
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A generic image viewer from Linux Mint";
|
|
mainProgram = "xviewer";
|
|
homepage = "https://github.com/linuxmint/xviewer";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tu-maurice ] ++ teams.cinnamon.members;
|
|
};
|
|
}
|