mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
29 lines
867 B
Nix
29 lines
867 B
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "zsh-autocomplete";
|
|
version = "23.05.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "marlonrichert";
|
|
repo = "zsh-autocomplete";
|
|
rev = version;
|
|
sha256 = "sha256-/6V6IHwB5p0GT1u5SAiUa20LjFDSrMo731jFBq/bnpw=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
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;
|
|
maintainers = [ maintainers.leona ];
|
|
};
|
|
}
|