- mount: 25.5.28-unstable-2025-05-28 → 25.5.28-unstable-2025-06-11 - ouch: 0-unstable-2025-06-01 → 0-unstable-2025-06-10 - rsync: 0-unstable-2025-06-07 → 0-unstable-2025-06-09 - yatline: 0-unstable-2025-05-31 → 0-unstable-2025-06-11 Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
24 lines
538 B
Nix
24 lines
538 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkYaziPlugin,
|
|
}:
|
|
mkYaziPlugin {
|
|
pname = "ouch.yazi";
|
|
version = "0-unstable-2025-06-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ndtoan96";
|
|
repo = "ouch.yazi";
|
|
rev = "1ee69a56da3c4b90ec8716dd9dd6b82e7a944614";
|
|
hash = "sha256-4KZeDkMXlhUV0Zh+VGBtz9kFPGOWCexYVuKUSCN463o=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Yazi plugin to preview archives";
|
|
homepage = "https://github.com/ndtoan96/ouch.yazi";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ khaneliman ];
|
|
};
|
|
}
|