zsh-defer: init at unstable-2022-06-13

This commit is contained in:
Vinny Meller 2023-07-28 10:36:48 -05:00
parent 7897d9c2bd
commit 4a018f08fa
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zsh-defer";
version = "unstable-2022-06-13";
src = fetchFromGitHub {
owner = "romkatv";
repo = pname;
rev = "57a6650ff262f577278275ddf11139673e01e471";
sha256 = "sha256-/rcIS2AbTyGw2HjsLPkHtt50c2CrtAFDnLuV5wsHcLc=";
};
strictDeps = true;
dontConfigure = true;
dontBuild = true;
installPhase = ''
mkdir -p $out/share/zsh-defer
cp zsh-defer* $out/share/zsh-defer
'';
meta = with lib; {
description = "Deferred execution of zsh commands";
homepage = "https://github.com/romkatv/zsh-defer";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = [ maintainers.vinnymeller ];
};
}

View File

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