nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
827 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, zsh }:
2021-03-03 10:08:11 +00:00
# To make use of this derivation, use the `programs.zsh.autosuggestions.enable` option
stdenv.mkDerivation rec {
pname = "zsh-autosuggestions";
2021-06-11 13:33:11 +00:00
version = "0.7.0";
src = fetchFromGitHub {
owner = "zsh-users";
2017-05-23 10:06:52 +00:00
repo = "zsh-autosuggestions";
rev = "v${version}";
2021-06-11 13:33:11 +00:00
sha256 = "1g3pij5qn2j7v7jjac2a63lxd97mcsgw6xq6k5p7835q9fjiid98";
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
buildInputs = [ zsh ];
installPhase = ''
install -D zsh-autosuggestions.zsh \
$out/share/zsh-autosuggestions/zsh-autosuggestions.zsh
'';
meta = with lib; {
description = "Fish shell autosuggestions for Zsh";
homepage = "https://github.com/zsh-users/zsh-autosuggestions";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.loskutov ];
};
}