about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJulius Michaelis <gitter@liftm.de>2024-07-11 11:09:55 +0900
committerJulius Michaelis <gitter@liftm.de>2024-08-04 10:42:37 +0900
commit59b930d820bbda1b1e83627088a45a689617581a (patch)
treebf6f38a1f4cb6bf3107cdce4de1e4509f4f1c4a3
parent7454971deb7c46bdd798453c118053c030beecbf (diff)
charasay: fix generating shell completions
-rw-r--r--pkgs/tools/misc/charasay/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/charasay/default.nix b/pkgs/tools/misc/charasay/default.nix
index 20594414daef5..f52312b387d06 100644
--- a/pkgs/tools/misc/charasay/default.nix
+++ b/pkgs/tools/misc/charasay/default.nix
@@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec {
   '';
 
   postInstall = ''
-    installShellCompletion --cmd himalaya \
-      --bash <($out/bin/chara completion --shell bash) \
-      --fish <($out/bin/chara completion --shell fish) \
-      --zsh <($out/bin/chara completion --shell zsh)
+    installShellCompletion --cmd chara \
+      --bash <($out/bin/chara completions --shell bash) \
+      --fish <($out/bin/chara completions --shell fish) \
+      --zsh <($out/bin/chara completions --shell zsh)
   '';
 
   meta = with lib; {