blob: ea34d479322ee91fe89b6c59c85cad62f121f7a2 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
lib,
fetchFromGitHub,
mkYaziPlugin,
}:
mkYaziPlugin {
pname = "chmod.yazi";
version = "25.2.26-unstable-2025-03-02";
src = fetchFromGitHub {
owner = "yazi-rs";
repo = "plugins";
rev = "b44c245500b34e713732a9130bf436b13b4777e9";
hash = "sha256-nZ8yfnKvNLM5aA+mmQ3PkfM5lwSKwWnkQewcg9GwseI=";
};
meta = {
description = "Execute chmod on the selected files to change their mode";
homepage = "https://yazi-rs.github.io";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}
|