Merge pull request #186504 from otavio/zsh-completions-tmuxp

zsh-completions: remove tmuxp completion
This commit is contained in:
Mario Rodas
2022-08-14 15:34:37 -05:00
committed by GitHub
+5 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub}:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zsh-completions";
@@ -12,8 +12,11 @@ stdenv.mkDerivation rec {
};
strictDeps = true;
installPhase= ''
installPhase = ''
install -D --target-directory=$out/share/zsh/site-functions src/*
# tmuxp install it so avoid collision
rm $out/share/zsh/site-functions/_tmuxp
'';
meta = {