Skip to content

Commit

Permalink
kitty: disable update check machanism
Browse files Browse the repository at this point in the history
kitty has its own update notification mechanism which should probably be disabled when the package is managed by a package manager such as nix. See https://sw.kovidgoyal.net/kitty/build.html#note-for-linux-macos-packagers.
  • Loading branch information
Luflosi committed Nov 2, 2019
1 parent f2f3682 commit 326583f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/misc/kitty/default.nix
Expand Up @@ -79,9 +79,9 @@ buildPythonApplication rec {
'';

buildPhase = if stdenv.isDarwin then ''
make app
${python.interpreter} setup.py kitty.app --update-check-interval=0
'' else ''
${python.interpreter} setup.py linux-package
${python.interpreter} setup.py linux-package --update-check-interval=0
'';

installPhase = ''
Expand Down

0 comments on commit 326583f

Please sign in to comment.