mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 08:01:14 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
31 lines
805 B
Nix
31 lines
805 B
Nix
{ stdenv, fetchFromGitHub, zsh }:
|
|
|
|
# To make use of this derivation, use the `programs.zsh.enableAutoSuggestions` option
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zsh-autosuggestions";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zsh-users";
|
|
repo = "zsh-autosuggestions";
|
|
rev = "v${version}";
|
|
sha256 = "1h8h2mz9wpjpymgl2p7pc146c1jgb3dggpvzwm9ln3in336wl95c";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|