Skip to content

Commit ccc919c

Browse files
authored
yaziPlugins.gitui: init at 0-unstable-2025-05-26 (#411158)
2 parents 07164f2 + 523818e commit ccc919c

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8160,6 +8160,16 @@
81608160
githubId = 26925347;
81618161
keys = [ { fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4"; } ];
81628162
};
8163+
felipe-9 = {
8164+
name = "Felipe Pinto";
8165+
email = "[email protected]";
8166+
github = "Felipe-9";
8167+
githubId = 32753781;
8168+
keys = [
8169+
{ fingerprint = "1533 0D57 3312 0936 AB38 3C9B 7D36 1E4B 83CD AEFB"; }
8170+
{ fingerprint = "2BD0 AD01 F91D A0DC 47DF 0AEE 7AA1 649F 6B71 42F2"; }
8171+
];
8172+
};
81638173
felipeqq2 = {
81648174
name = "Felipe Silva";
81658175
email = "[email protected]";
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
mkYaziPlugin,
5+
}:
6+
let
7+
pname = "gitui.yazi";
8+
in
9+
mkYaziPlugin {
10+
inherit pname;
11+
version = "0-unstable-2025-05-26";
12+
13+
src = fetchFromGitHub {
14+
owner = "gclarkjr5";
15+
repo = pname;
16+
rev = "397e9cf9cff536a43e746d72e0e81fd5c3050d2d";
17+
hash = "sha256-Bo16/5XuSxRhN6URwTBxuw0FTMHLF3nV1UDBQQJFHMM=";
18+
};
19+
20+
installPhase = ''
21+
runHook preInstall
22+
cp -r . $out
23+
mv $out/init.lua $out/main.lua
24+
runHook postInstall
25+
'';
26+
27+
meta = {
28+
description = "Plugin for Yazi to manage git repos with gitui";
29+
homepage = "https://github.com/gclarkjr5/gitui.yazi";
30+
license = lib.licenses.mit;
31+
maintainers = with lib.maintainers; [ felipe-9 ];
32+
};
33+
}

0 commit comments

Comments
 (0)