Merge pull request #225338 from Artturin/fixgsettingsisues1

authored by Artturi and committed by GitHub b6382db9 cfed597a

+8 -1
+8 -1
pkgs/applications/office/timeline/default.nix
··· 4 4 , gettext 5 5 , makeDesktopItem 6 6 , copyDesktopItems 7 + , wrapGAppsHook 7 8 }: 8 9 9 10 python3.pkgs.buildPythonApplication rec { ··· 16 17 sha256 = "sha256-qwH2mt3Va62QJKJGOpt5WV3QksqQaRGEif4CcPC5F2E="; 17 18 }; 18 19 19 - nativeBuildInputs = [ python3.pkgs.wrapPython copyDesktopItems ]; 20 + nativeBuildInputs = [ python3.pkgs.wrapPython copyDesktopItems wrapGAppsHook ]; 20 21 21 22 pythonPath = with python3.pkgs; [ 22 23 wxPython_4_2 ··· 74 75 runHook preCheck 75 76 ${python3.interpreter} tools/execute-specs.py 76 77 runHook postCheck 78 + ''; 79 + 80 + dontWrapGApps = true; 81 + 82 + preFixup = '' 83 + makeWrapperArgs+=("''${gappsWrapperArgs[@]}") 77 84 ''; 78 85 79 86 meta = with lib; {