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
582 B
Nix
23 lines
582 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkYaziPlugin,
|
|
}:
|
|
mkYaziPlugin {
|
|
pname = "relative-motions.yazi";
|
|
version = "25.5.28-unstable-2025-06-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dedukun";
|
|
repo = "relative-motions.yazi";
|
|
rev = "2e3b6172e6226e0db96aea12d09dea2d2e443fea";
|
|
hash = "sha256-v0e06ieBKNmt9DATdL7R4AyVFa9DlNBwpfME3LHozLA=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Yazi plugin based about vim motions";
|
|
homepage = "https://github.com/dedukun/relative-motions.yazi";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ khaneliman ];
|
|
};
|
|
}
|