zsh-edit: init at unstable-2022-05-05

This commit is contained in:
David Morgan 2022-12-01 12:28:41 +00:00
parent 38e591dd05
commit ba9d6825bd
No known key found for this signature in database
GPG key ID: C171251002C200F2
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zsh-edit";
version = "unstable-2022-05-05";
src = fetchFromGitHub {
owner = "marlonrichert";
repo = "zsh-edit";
rev = "4a8fa599792b6d52eadbb3921880a40872013d28";
sha256 = "PI4nvzB/F0mHlc0UZJdD49vjzB6pXhhJYNTSmBhY8iU=";
};
strictDeps = true;
dontBuild = true;
installPhase = ''
outdir=$out/share/zsh/${pname}
install -D zsh-edit.plugin.zsh $outdir/zsh-edit.plugin.zsh
install -D _bind $outdir/_bind
install -d $outdir/functions
install -D functions/{,.edit}* $outdir/functions
'';
meta = with lib; {
homepage = "https://github.com/marlonrichert/zsh-edit";
description = "A set of powerful extensions to the Zsh command line editor";
license = licenses.mit;
maintainers = with maintainers; [ deejayem ];
platforms = platforms.all;
};
}

View file

@ -13373,6 +13373,8 @@ with pkgs;
zsh-clipboard = callPackage ../shells/zsh/zsh-clipboard { };
zsh-edit = callPackage ../shells/zsh/zsh-edit { };
zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { };
zsh-history = callPackage ../shells/zsh/zsh-history { };