yaziPlugins.glow: init at 0-unstable-2025-02-22

This commit is contained in:
Austin Horstman
2025-04-08 18:17:25 -05:00
parent 7304dc8969
commit beeb877235
@@ -0,0 +1,31 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "glow.yazi";
version = "0-unstable-2025-02-22";
src = fetchFromGitHub {
owner = "Reledia";
repo = "glow.yazi";
rev = "c76bf4fb612079480d305fe6fe570bddfe4f99d3";
hash = "sha256-DPud1Mfagl2z490f5L69ZPnZmVCa0ROXtFeDbEegBBU=";
};
installPhase = ''
runHook preInstall
cp -r . $out
runHook postInstall
'';
meta = {
description = "Glow preview plugin for yazi.";
homepage = "https://github.com/Reledia/glow.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}