From 0097acf5672052e90c751f4c87617b9146c86a3f Mon Sep 17 00:00:00 2001 From: Anund Date: Tue, 10 Sep 2024 10:39:11 -0600 Subject: [PATCH] playerctl: enable zsh completions --- pkgs/tools/audio/playerctl/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/audio/playerctl/default.nix b/pkgs/tools/audio/playerctl/default.nix index 8740c273eef3..e65f9a20989b 100644 --- a/pkgs/tools/audio/playerctl/default.nix +++ b/pkgs/tools/audio/playerctl/default.nix @@ -37,7 +37,8 @@ stdenv.mkDerivation rec { buildInputs = [ glib ]; mesonFlags = [ - "-Dbash-completions=true" + (lib.mesonBool "bash-completions" true) + (lib.mesonBool "zsh-completions" true) (lib.mesonBool "gtk-doc" withDocs) ];