From dc3b6917a5fa37612c6d1e13b490de8d56dc52c1 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 29 Jan 2026 08:26:03 -0600 Subject: [PATCH] yaziPlugins.githead: init at 0-unstable-2026-01-26 https: //github.com/llanosrocas/githead.yazi Signed-off-by: Austin Horstman --- .../ya/yazi/plugins/githead/default.nix | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/githead/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/githead/default.nix b/pkgs/by-name/ya/yazi/plugins/githead/default.nix new file mode 100644 index 000000000000..e3b877ef2ff5 --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/githead/default.nix @@ -0,0 +1,23 @@ +{ + lib, + fetchFromGitHub, + mkYaziPlugin, +}: +mkYaziPlugin { + pname = "githead.yazi"; + version = "0-unstable-2026-01-26"; + + src = fetchFromGitHub { + owner = "llanosrocas"; + repo = "githead.yazi"; + rev = "317d09f728928943f0af72ff6ce31ea335351202"; + hash = "sha256-o2EnQYOxp5bWn0eLn0sCUXcbtu6tbO9pdUdoquFCTVw="; + }; + + meta = { + description = "Git status header for yazi inspired by powerlevel10k "; + homepage = "https://github.com/llanosrocas/githead.yazi"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ khaneliman ]; + }; +}