Skip to content

Commit

Permalink
kakoune: fix installCheck
Browse files Browse the repository at this point in the history
* `doInstallCheckPhase` -> `doInstallCheck`
* `-E` throws an exception that is uncaught, leading the check to fail.
`-e` works as expected.
  • Loading branch information
cole-h committed Dec 22, 2020
1 parent 653a1ed commit 9b3fe2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/editors/kakoune/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand Down

0 comments on commit 9b3fe2e

Please sign in to comment.