summary refs log tree commit diff
path: root/pkgs/applications/misc/pueue
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-11-18 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-11-18 04:20:00 +0000
commit42573fcf46023430960f2f1d030817f8f829abfd (patch)
tree945cab7c7496f360b5beec3614c72bf22d322378 /pkgs/applications/misc/pueue
parent0e111847bc0c0d7061d2802cc3b38a871c7f42cf (diff)
downloadnixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.tar
nixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.tar.gz
nixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.tar.bz2
nixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.tar.lz
nixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.tar.xz
nixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.tar.zst
nixpkgs-42573fcf46023430960f2f1d030817f8f829abfd.zip
pueue: install zsh completions
Diffstat (limited to 'pkgs/applications/misc/pueue')
-rw-r--r--pkgs/applications/misc/pueue/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/misc/pueue/default.nix b/pkgs/applications/misc/pueue/default.nix
index 21cc9d7cf72..3cd9d5db006 100644
--- a/pkgs/applications/misc/pueue/default.nix
+++ b/pkgs/applications/misc/pueue/default.nix
@@ -18,11 +18,10 @@ rustPlatform.buildRustPackage rec {
   checkFlags = [ "--skip=test_single_huge_payload" "--skip=test_create_unix_socket" ];
 
   postInstall = ''
-    # zsh completion generation fails. See: https://github.com/Nukesor/pueue/issues/57
-    for shell in bash fish; do
+    for shell in bash fish zsh; do
       $out/bin/pueue completions $shell .
-      installShellCompletion pueue.$shell
     done
+    installShellCompletion pueue.{bash,fish} _pueue
   '';
 
   meta = with lib; {