nixpkgs/pkgs/shells/zsh/zsh-autocomplete/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
867 B
Nix
Raw Normal View History

2021-10-19 09:01:50 +00:00
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "zsh-autocomplete";
2023-05-27 17:08:16 +00:00
version = "23.05.24";
2021-10-19 09:01:50 +00:00
src = fetchFromGitHub {
owner = "marlonrichert";
repo = "zsh-autocomplete";
rev = version;
2023-05-27 17:08:16 +00:00
sha256 = "sha256-/6V6IHwB5p0GT1u5SAiUa20LjFDSrMo731jFBq/bnpw=";
2021-10-19 09:01:50 +00:00
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
2021-10-19 09:01:50 +00:00
installPhase = ''
install -D zsh-autocomplete.plugin.zsh $out/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
cp -R scripts $out/share/zsh-autocomplete/scripts
cp -R functions $out/share/zsh-autocomplete/functions
'';
meta = with lib; {
description = "Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion";
homepage = "https://github.com/marlonrichert/zsh-autocomplete/";
license = licenses.mit;
platforms = platforms.unix;
2022-06-06 19:50:18 +00:00
maintainers = [ maintainers.leona ];
2021-10-19 09:01:50 +00:00
};
}