summary refs log tree commit diff
path: root/pkgs/applications/editors/kakoune
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2020-12-21 16:21:22 -0800
committerCole Helbling <cole.e.helbling@outlook.com>2020-12-21 16:21:22 -0800
commit9b3fe2eef472e91e5c331b7b3077687aa5b13543 (patch)
tree0351e63e397405473b98eb0f520105c07962f195 /pkgs/applications/editors/kakoune
parent653a1edb4255fb144e63d98221f887572e101b51 (diff)
downloadnixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.tar
nixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.tar.gz
nixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.tar.bz2
nixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.tar.lz
nixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.tar.xz
nixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.tar.zst
nixpkgs-9b3fe2eef472e91e5c331b7b3077687aa5b13543.zip
kakoune: fix installCheck
* `doInstallCheckPhase` -> `doInstallCheck`
* `-E` throws an exception that is uncaught, leading the check to fail.
`-e` works as expected.
Diffstat (limited to 'pkgs/applications/editors/kakoune')
-rw-r--r--pkgs/applications/editors/kakoune/default.nix4
1 files 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 = ''