Unverified Commit d952c740 authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

yaziPlugins.recycle-bin: init at 1.0.0-unstable-2025-08-20 (#437759)

parents c3e5d9f8 e0bba73a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -9791,6 +9791,11 @@
    githubId = 28863828;
    name = "guserav";
  };
  guttermonk = {
    github = "guttermonk";
    githubId = 4753752;
    name = "guttermonk";
  };
  guyonvarch = {
    github = "guyonvarch";
    githubId = 6768842;
+24 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  mkYaziPlugin,
}:
mkYaziPlugin {
  pname = "recycle-bin.yazi";
  version = "1.0.0-unstable-2025-08-20";

  src = fetchFromGitHub {
    owner = "uhs-robert";
    repo = "recycle-bin.yazi";
    rev = "52f6fe08f5f42cbae56d8c46abc368560e1e2d6e";
    hash = "sha256-krZAbL7JRRvJbT+23C6fw8Zbav+8I+bvIFAYrpeNuhw=";
  };

  meta = {
    description = "A Recycle Bin for Yazi with browse, restore, and cleanup capabilities";
    homepage = "https://github.com/uhs-robert/recycle-bin.yazi";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ guttermonk ];
    platforms = lib.platforms.linux;
  };
}