23 lines
550 B
Nix
23 lines
550 B
Nix
|
|
{
|
||
|
|
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 ];
|
||
|
|
};
|
||
|
|
}
|