terminator: use dontWrapGApps to fix desktop icon

Terminator is currently wrapped twice, which makes the python hook use a
wrapped executable name to set argv[0]. As a result, Terminator can't be
matched to its desktop entry and fails to group correctly in e.g. the GNOME app
launcher. Ensuring we only wrap the executable once solves this.
This commit is contained in:
Joerie de Gram 2021-10-17 13:46:57 +02:00
parent 50ff5c608a
commit 5bee472a9b

View file

@ -56,6 +56,12 @@ python3.pkgs.buildPythonApplication rec {
doCheck = false;
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
description = "Terminal emulator with support for tiling and tabs";
longDescription = ''