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)
87 lines
1.8 KiB
Nix
87 lines
1.8 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, intltool
|
|
, mate
|
|
, libnotify
|
|
, gtk3
|
|
, gdk-pixbuf
|
|
, gobject-introspection
|
|
, wrapGAppsHook3
|
|
, glib
|
|
, gitUpdater
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mate-tweak";
|
|
version = "22.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ubuntu-mate";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "emeNgCzMhHMeLOyUkXe+8OzQMEWuwNdD4xkGXIFgbh4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
intltool
|
|
python3Packages.distutils-extra
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
gdk-pixbuf
|
|
libnotify
|
|
glib
|
|
mate.mate-applets
|
|
mate.mate-panel
|
|
mate.marco
|
|
mate.libmatekbd
|
|
mate.mate-session-manager
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
distro
|
|
pygobject3
|
|
psutil
|
|
setproctitle
|
|
];
|
|
|
|
strictDeps = false;
|
|
|
|
dontWrapGApps = true;
|
|
|
|
postPatch = ''
|
|
# mate-tweak hardcodes absolute paths everywhere. Nuke from orbit.
|
|
find . -type f -exec sed -i \
|
|
-e s,/usr/lib/mate-tweak,$out/lib/mate-tweak,g \
|
|
{} +
|
|
|
|
sed -i 's,{prefix}/,,g' setup.py
|
|
'';
|
|
|
|
# Arguments to be passed to `makeWrapper`, only used by buildPython*
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
postFixup = ''
|
|
for i in bin/.mate-tweak-wrapped lib/mate-tweak/mate-tweak-helper; do
|
|
sed -i "s,usr,run/current-system/sw,g" $out/$i
|
|
done
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "Tweak tool for the MATE Desktop";
|
|
homepage = "https://github.com/ubuntu-mate/mate-tweak";
|
|
changelog = "https://github.com/ubuntu-mate/mate-tweak/releases/tag/${version}";
|
|
license = [ licenses.gpl2Plus ];
|
|
platforms = platforms.linux;
|
|
maintainers = teams.mate.members ++ (with maintainers; [ luc65r ]);
|
|
};
|
|
}
|