lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

flavours: install shell completions using process substitution

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Gabriel Fontes
Sandro
and committed by
Jonathan Ringer
18f93edb 93c6f425

+4 -4
+4 -4
pkgs/applications/misc/flavours/default.nix
··· 19 19 nativeBuildInputs = [ installShellFiles ]; 20 20 21 21 postInstall = '' 22 - $out/bin/flavours --completions bash > flavours.bash 23 - $out/bin/flavours --completions fish > flavours.fish 24 - $out/bin/flavours --completions zsh > _flavours 25 - installShellCompletion --zsh _flavours --fish flavours.fish --bash flavours.bash 22 + installShellCompletion --cmd flavours \ 23 + --zsh <($out/bin/flavours --completions zsh) \ 24 + --fish <($out/bin/flavours --completions fish) \ 25 + --bash <($out/bin/flavours --completions bash) 26 26 ''; 27 27 28 28 meta = with lib; {