From 59b930d820bbda1b1e83627088a45a689617581a Mon Sep 17 00:00:00 2001 From: Julius Michaelis Date: Thu, 11 Jul 2024 11:09:55 +0900 Subject: [PATCH] charasay: fix generating shell completions --- pkgs/tools/misc/charasay/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/charasay/default.nix b/pkgs/tools/misc/charasay/default.nix index 20594414daef..f52312b387d0 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; {