3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix
2019-04-14 22:25:24 +02:00

31 lines
815 B
Nix

{ stdenv, fetchFromGitHub, zsh }:
# To make use of this derivation, use the `programs.zsh.enableAutoSuggestions` option
stdenv.mkDerivation rec {
name = "zsh-autosuggestions-${version}";
version = "0.5.2";
src = fetchFromGitHub {
owner = "zsh-users";
repo = "zsh-autosuggestions";
rev = "v${version}";
sha256 = "1xhrdv6cgmq9qslb476rcs8ifw8i2vf43yvmmscjcmpz0jac4sbx";
};
buildInputs = [ zsh ];
installPhase = ''
install -D zsh-autosuggestions.zsh \
$out/share/zsh-autosuggestions/zsh-autosuggestions.zsh
'';
meta = with stdenv.lib; {
description = "Fish shell autosuggestions for Zsh";
homepage = https://github.com/zsh-users/zsh-autosuggestions;
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.loskutov ];
};
}