From 42573fcf46023430960f2f1d030817f8f829abfd Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 18 Nov 2020 04:20:00 +0000 Subject: [PATCH] pueue: install zsh completions --- pkgs/applications/misc/pueue/default.nix | 5 ++--- 1 file 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; {