File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
pkgs/by-name/ya/yazi/plugins/gitui Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 8160
8160
githubId = 26925347;
8161
8161
keys = [ { fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4"; } ];
8162
8162
};
8163
+ felipe-9 = {
8164
+ name = "Felipe Pinto";
8165
+
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
+ };
8163
8173
felipeqq2 = {
8164
8174
name = "Felipe Silva";
8165
8175
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments