kakoune: fix installCheck

* `doInstallCheckPhase` -> `doInstallCheck`
* `-E` throws an exception that is uncaught, leading the check to fail.
`-e` works as expected.
This commit is contained in:
Cole Helbling 2020-12-21 16:21:22 -08:00
parent 653a1edb42
commit 9b3fe2eef4
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C

View file

@ -25,9 +25,9 @@ stdenv.mkDerivation rec {
export version="v${version}"
'';
doInstallCheckPhase = true;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/kak -ui json -E "kill 0"
$out/bin/kak -ui json -e "kill 0"
'';
postInstall = ''