nixpkgs/pkgs/by-name/ya/yazi/plugins/rich-preview/default.nix
Austin Horstman e36bf9d52f
yaziPlugins: update on 2025-06-06
- mediainfo: 25.5.28-unstable-2025-05-30 → 25.5.31-unstable-2025-06-05
- projects: 0-unstable-2025-05-29 → 0-unstable-2025-06-03
- relative-motions: 25.4.8-unstable-2025-04-16 → 25.5.28-unstable-2025-06-05
- restore: 25.5.28-unstable-2025-05-30 → 25.5.31-unstable-2025-06-05
- rich-preview: 0-unstable-2025-05-30 → 0-unstable-2025-05-31
- starship: 25.4.8-unstable-2025-05-30 → 25.4.8-unstable-2025-06-01

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-08 15:25:20 -05:00

23 lines
572 B
Nix

{
lib,
fetchFromGitHub,
mkYaziPlugin,
}:
mkYaziPlugin {
pname = "rich-preview.yazi";
version = "0-unstable-2025-05-31";
src = fetchFromGitHub {
owner = "AnirudhG07";
repo = "rich-preview.yazi";
rev = "843c3faf0a99f5ce31d02372c868d8dae92ca29d";
hash = "sha256-celObHo9Y3pFCd1mTx1Lz77Tc22SJTleRblAkbH/RqY=";
};
meta = {
description = "Preview file types using rich in Yazi";
homepage = "https://github.com/AnirudhG07/rich-preview.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];
};
}