nixpkgs-suyu/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 11:01:50 +02:00
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "zsh-autocomplete";
2022-02-13 12:30:33 +01:00
version = "22.01.21";
2021-10-19 11:01:50 +02:00
src = fetchFromGitHub {
owner = "marlonrichert";
repo = "zsh-autocomplete";
rev = version;
2022-02-13 12:30:33 +01:00
sha256 = "sha256-+UziTYsjgpiumSulrLojuqHtDrgvuG91+XNiaMD7wIs=";
2021-10-19 11:01:50 +02:00
};
2022-05-06 20:39:28 +02:00
strictDeps = true;
2021-10-19 11:01:50 +02: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 21:50:18 +02:00
maintainers = [ maintainers.leona ];
2021-10-19 11:01:50 +02:00
};
}