zhook: init at 0-unstable-10-31-2021

(cherry picked from commit 3ac1afe403)
This commit is contained in:
FidgetingBits 2024-03-17 11:32:18 +08:00 committed by github-actions[bot]
parent e961383ee4
commit 88571b0618

View File

@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "zsh-zhooks";
version = "0-unstable-10-31-2021";
src = fetchFromGitHub {
owner = "agkozak";
repo = "zhooks";
rev = "e6616b4a2786b45a56a2f591b79439836e678d22";
sha256 = "sha256-zahXMPeJ8kb/UZd85RBcMbomB7HjfEKzQKjF2NnumhQ=";
};
dontBuild = true;
installPhase = ''
install -m755 -D zhooks.plugin.zsh --target-directory $out/share/zsh/zhooks
'';
meta = {
description = "A tool for displaying the code for all Zsh hook functions";
homepage = "https://github.com/agkozak/zhooks";
license = lib.licenses.mit;
longDescription = ''
This Zsh plugin is a tool for displaying the code for all Zsh hook functions (such as precmd), as well as the contents of
hook arrays (such as precmd_functions).
'';
maintainers = [ lib.maintainers.fidgetingbits ];
};
}