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
commit ad32ccbe7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = {