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
565 B
Nix
23 lines
565 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkYaziPlugin,
|
|
}:
|
|
mkYaziPlugin {
|
|
pname = "starship.yazi";
|
|
version = "25.4.8-unstable-2025-06-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rolv-Apneseth";
|
|
repo = "starship.yazi";
|
|
rev = "6a0f3f788971b155cbc7cec47f6f11aebbc148c9";
|
|
hash = "sha256-q1G0Y4JAuAv8+zckImzbRvozVn489qiYVGFQbdCxC98=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Starship prompt plugin for yazi";
|
|
homepage = "https://github.com/Rolv-Apneseth/starship.yazi";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ khaneliman ];
|
|
};
|
|
}
|