yaziPlugins.bypass: init at 0-unstable-2025-02-16

This commit is contained in:
Austin Horstman
2025-04-08 18:18:44 -05:00
parent bab4c74cbf
commit a4bc0854b3
@@ -0,0 +1,31 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "bypass.yazi";
version = "0-unstable-2025-02-16";
src = fetchFromGitHub {
owner = "Rolv-Apneseth";
repo = "bypass.yazi";
rev = "ecb1f7f6fd305ff4ffff548fa955595af6b26e60";
hash = "sha256-XXp4XflrVrs8FrUCRUbSxWZTSGPrIGrpqvB1pARerKQ=";
};
installPhase = ''
runHook preInstall
cp -r . $out
runHook postInstall
'';
meta = {
description = "Yazi plugin for skipping directories with only a single sub-directory.";
homepage = "https://github.com/Rolv-Apneseth/bypass.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}