about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2022-11-29 21:40:37 +0000
committerGitHub <noreply@github.com>2022-11-29 21:40:37 +0000
commitf79febbc8c92d45a2df8a31e39e52c6be625a078 (patch)
treef64bc8173513b5e8f6fd87ed70909fbe5d95665d
parentfb9b50242dc8edbf358a3de25c7e060c456c4ba2 (diff)
parentc35e1f6c26b643598a0726fc0b9fcdb00962de36 (diff)
Merge pull request #202750 from wentasah/nix-zsh-completions-fix
nix-zsh-completions: remove broken _nix completion function
-rw-r--r--pkgs/shells/zsh/nix-zsh-completions/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/shells/zsh/nix-zsh-completions/default.nix b/pkgs/shells/zsh/nix-zsh-completions/default.nix
index dab73419ab55b..59e9fa8d8d487 100644
--- a/pkgs/shells/zsh/nix-zsh-completions/default.nix
+++ b/pkgs/shells/zsh/nix-zsh-completions/default.nix
@@ -11,6 +11,17 @@ stdenv.mkDerivation rec {
     sha256 = "1n9whlys95k4wc57cnz3n07p7zpkv796qkmn68a50ygkx6h3afqf";
   };
 
+  # https://github.com/spwhitt/nix-zsh-completions/issues/42
+  #
+  # _nix completion is broken. Remove it; _nix provided by the nix
+  # package will be used instead. It is not sufficient to set low
+  # meta.priority below if nix is installed in the system profile and
+  # nix-zsh-completions in an user profile. In that case, the broken
+  # version takes precedence over the good one.
+  postPatch = ''
+    rm _nix
+  '';
+
   strictDeps = true;
   installPhase = ''
     mkdir -p $out/share/zsh/{site-functions,plugins/nix}