Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
882 B
Nix
33 lines
882 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "zsh-autocomplete";
|
|
version = "25.03.19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "marlonrichert";
|
|
repo = "zsh-autocomplete";
|
|
rev = version;
|
|
sha256 = "sha256-eb5a5WMQi8arZRZDt4aX1IV+ik6Iee3OxNMCiMnjIx4=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
installPhase = ''
|
|
install -D zsh-autocomplete.plugin.zsh $out/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
|
|
cp -R Completions $out/share/zsh-autocomplete/Completions
|
|
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;
|
|
maintainers = [ maintainers.leona ];
|
|
};
|
|
}
|