Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
552 B
Nix
23 lines
552 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkYaziPlugin,
|
|
}:
|
|
mkYaziPlugin {
|
|
pname = "rsync.yazi";
|
|
version = "0-unstable-2025-09-20";
|
|
src = fetchFromGitHub {
|
|
owner = "GianniBYoung";
|
|
repo = "rsync.yazi";
|
|
rev = "824d8a35bf1f13742d19ecd93521bedc547fa809";
|
|
hash = "sha256-GqrwhJ4Fyxk4vzOSkFPoxvq5EV50YejaB84m2K006Bc=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple rsync plugin for yazi file manager";
|
|
homepage = "https://github.com/GianniBYoung/rsync.yazi";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ teto ];
|
|
};
|
|
}
|