mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

- 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>
23 lines
574 B
Nix
23 lines
574 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkYaziPlugin,
|
|
}:
|
|
mkYaziPlugin {
|
|
pname = "mediainfo.yazi";
|
|
version = "25.5.31-unstable-2025-06-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boydaihungst";
|
|
repo = "mediainfo.yazi";
|
|
rev = "a7d1aa69a1a107e64540c17f19ac94be1366769f";
|
|
hash = "sha256-HUD8Sv1C4gzZRvSEIYqcmm+A0mBYDuwZHCNH26kipS0=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Yazi plugin for previewing media files";
|
|
homepage = "https://github.com/boydaihungst/mediainfo.yazi";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ khaneliman ];
|
|
};
|
|
}
|