fix(sterni/machines/edwin): fix cgit default branch declarations
Change-Id: Icfd167e608955ec33367ca51dd8ae1d8d2740b4d Reviewed-on: https://cl.tvl.fyi/c/depot/+/7837 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Autosubmit: sterni <sternenseemann@systemli.org>
This commit is contained in:
parent
43d83274e6
commit
66d7cf4b58
1 changed files with 4 additions and 3 deletions
|
@ -14,7 +14,7 @@ let
|
||||||
"mirror/depot" = {
|
"mirror/depot" = {
|
||||||
description = "monorepo for the virus lounge";
|
description = "monorepo for the virus lounge";
|
||||||
upstream = "https://code.tvl.fyi/depot.git";
|
upstream = "https://code.tvl.fyi/depot.git";
|
||||||
cgit.defaultBranch = "canon";
|
cgit.defbranch = "canon";
|
||||||
};
|
};
|
||||||
"mirror/flipdot-gschichtler" = {
|
"mirror/flipdot-gschichtler" = {
|
||||||
description = "message queue system for OpenLab's flipdot display";
|
description = "message queue system for OpenLab's flipdot display";
|
||||||
|
@ -40,12 +40,12 @@ let
|
||||||
};
|
};
|
||||||
haskell-dot-time = {
|
haskell-dot-time = {
|
||||||
description = "UTC-centric time library for haskell with dot time support";
|
description = "UTC-centric time library for haskell with dot time support";
|
||||||
cgit.defaultBranch = "main";
|
cgit.defbranch = "main";
|
||||||
};
|
};
|
||||||
buchstabensuppe = {
|
buchstabensuppe = {
|
||||||
description = "toy font rendering for low pixelcount, high contrast displays";
|
description = "toy font rendering for low pixelcount, high contrast displays";
|
||||||
cgit.defaultBranch = "main";
|
|
||||||
upstream = "https://github.com/sternenseemann/buchstabensuppe.git";
|
upstream = "https://github.com/sternenseemann/buchstabensuppe.git";
|
||||||
|
cgit.defbranch = "main";
|
||||||
};
|
};
|
||||||
"mirror/saneterm" = {
|
"mirror/saneterm" = {
|
||||||
description = "modern line-oriented terminal emulator without support for TUIs";
|
description = "modern line-oriented terminal emulator without support for TUIs";
|
||||||
|
@ -130,6 +130,7 @@ let
|
||||||
lib.concatMapStringsSep "\n" (section:
|
lib.concatMapStringsSep "\n" (section:
|
||||||
''
|
''
|
||||||
section=${section.section}
|
section=${section.section}
|
||||||
|
|
||||||
''
|
''
|
||||||
+ builtins.concatStringsSep "\n\n" (lib.mapAttrsToList cgitRepoEntry section.repos)
|
+ builtins.concatStringsSep "\n\n" (lib.mapAttrsToList cgitRepoEntry section.repos)
|
||||||
) repoSections
|
) repoSections
|
||||||
|
|
Loading…
Reference in a new issue