Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
550 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
mkYaziPlugin,
}:
mkYaziPlugin {
pname = "diff.yazi";
version = "25.2.7-unstable-2025-03-02";
src = fetchFromGitHub {
owner = "yazi-rs";
repo = "plugins";
rev = "b44c245500b34e713732a9130bf436b13b4777e9";
hash = "sha256-nZ8yfnKvNLM5aA+mmQ3PkfM5lwSKwWnkQewcg9GwseI=";
};
meta = {
description = "Diff the selected file with the hovered file, create a living patch, and copy it to the clipboard";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}