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.
This commit is contained in:
Andreas Fuchs 2021-11-14 22:06:45 +01:00
parent 488a5a3787
commit 1c72fa65ed

View File

@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/spwhitt/nix-zsh-completions";
description = "ZSH completions for Nix, NixOS, and NixOps";
priority = 6; # prevent collisions with nix 2.4's built-in completions
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ spwhitt olejorgenb hedning ma27 ];