Files

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

24 lines
522 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
mkYaziPlugin,
}:
mkYaziPlugin {
pname = "sudo.yazi";
version = "0-unstable-2025-09-22";
src = fetchFromGitHub {
owner = "TD-Sky";
repo = "sudo.yazi";
rev = "8148f9101d0aeb8eed5ba2b7e943d51963f14bd9";
hash = "sha256-old+I3UlgMWfG0HuKEdIkAO2/4KNRLAWj0l+lB9+aZU=";
};
meta = {
description = "Call `sudo` in yazi";
homepage = "https://github.com/TD-Sky/sudo.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}