yaziPlugins.restore: init at 25.2.7-unstable-2025-04-04

This commit is contained in:
Austin Horstman
2025-04-08 18:18:02 -05:00
parent a204dc4b72
commit b762826ab8
@@ -0,0 +1,31 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "restore.yazi";
version = "25.2.7-unstable-2025-04-04";
src = fetchFromGitHub {
owner = "boydaihungst";
repo = "restore.yazi";
rev = "328dd888c1e2b9b0cb5dc806f099e3164e179620";
hash = "sha256-3Z8P25u9bffdjrPjxLRWUQn6MdBS+vyElUBkgV4EUwY=";
};
installPhase = ''
runHook preInstall
cp -r . $out
runHook postInstall
'';
meta = {
description = "Undo/Recover trashed files/folders.";
homepage = "https://github.com/boydaihungst/restore.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}