From 9b3fe2eef472e91e5c331b7b3077687aa5b13543 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Mon, 21 Dec 2020 16:21:22 -0800 Subject: [PATCH] kakoune: fix installCheck * `doInstallCheckPhase` -> `doInstallCheck` * `-E` throws an exception that is uncaught, leading the check to fail. `-e` works as expected. --- pkgs/applications/editors/kakoune/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/kakoune/default.nix b/pkgs/applications/editors/kakoune/default.nix index f1f81106659..67a2ac5fac7 100644 --- a/pkgs/applications/editors/kakoune/default.nix +++ b/pkgs/applications/editors/kakoune/default.nix @@ -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 = ''