kitty: disable update check machanism

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.
This commit is contained in:
Luflosi 2019-09-20 17:38:43 +02:00
parent f2f36822ca
commit 326583f96a
No known key found for this signature in database
GPG key ID: 14140F703B7D8362

View file

@ -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 = ''