yaziPlugins.git: init at 25.2.26-unstable-2025-03-17

This commit is contained in:
Austin Horstman
2025-04-08 18:13:26 -05:00
parent 21f4687dd0
commit 7fc44f8731
@@ -0,0 +1,35 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "git.yazi";
version = "25.2.26-unstable-2025-03-17";
src = fetchFromGitHub {
owner = "yazi-rs";
repo = "plugins";
rev = "79193b3917d0f1b82ee41b4e64ae4df58f2284f6";
hash = "sha256-ZLL/dFjNsryjm51kFNOmw5DhSGl2K5IfatHpe1PkuFE=";
};
# NOTE: License is a relative symbolic link
# We remove the link and copy the true license
installPhase = ''
runHook preInstall
cp -r git.yazi $out
rm $out/LICENSE
cp LICENSE $out
runHook postInstall
'';
meta = {
description = "Show the status of Git file changes as linemode in the file list";
homepage = "https://yazi-rs.github.io";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}