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
875 B
Nix
Raw Normal View History

2021-10-19 09:01:50 +00:00
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "zsh-autocomplete";
2024-02-23 04:34:08 +00:00
version = "23.07.13";
2021-10-19 09:01:50 +00:00
src = fetchFromGitHub {
owner = "marlonrichert";
repo = "zsh-autocomplete";
rev = version;
2024-02-23 04:34:08 +00:00
sha256 = "sha256-0NW0TI//qFpUA2Hdx6NaYdQIIUpRSd0Y4NhwBbdssCs=";
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
2024-02-23 04:34:08 +00:00
cp -R Completions $out/share/zsh-autocomplete/Completions
cp -R Functions $out/share/zsh-autocomplete/Functions
2021-10-19 09:01:50 +00:00
'';
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
};
}