Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nix-zsh-completions: Lower priority to avoid collisions with nix

Both it and nix >=2.4 install a _nix zsh completion definition. The
one in nix should take precedence, so let's lower this package's
priority.

+1
+1
pkgs/shells/zsh/nix-zsh-completions/default.nix
··· 20 20 meta = with lib; { 21 21 homepage = "https://github.com/spwhitt/nix-zsh-completions"; 22 22 description = "ZSH completions for Nix, NixOS, and NixOps"; 23 + priority = 6; # prevent collisions with nix 2.4's built-in completions 23 24 license = licenses.bsd3; 24 25 platforms = platforms.all; 25 26 maintainers = with maintainers; [ spwhitt olejorgenb hedning ma27 ];