ma git: add yacos-backend
This commit is contained in:
parent
2f5720d5c5
commit
dbd35e0635
@ -3,8 +3,9 @@
|
|||||||
with import <stockholm/lib>;
|
with import <stockholm/lib>;
|
||||||
let
|
let
|
||||||
|
|
||||||
repos = priv-repos // krebs-repos // connector-repos // krebsroot-repos;
|
repos = pub-repos // priv-repos // krebs-repos // connector-repos // krebsroot-repos;
|
||||||
rules = concatMap krebs-rules (attrValues krebs-repos)
|
rules = concatMap krebs-rules (attrValues krebs-repos)
|
||||||
|
++ concatMap priv-rules (attrValues pub-repos)
|
||||||
++ concatMap priv-rules (attrValues priv-repos)
|
++ concatMap priv-rules (attrValues priv-repos)
|
||||||
++ concatMap connector-rules (attrValues connector-repos)
|
++ concatMap connector-rules (attrValues connector-repos)
|
||||||
++ concatMap krebsroot-rules (attrValues krebsroot-repos);
|
++ concatMap krebsroot-rules (attrValues krebsroot-repos);
|
||||||
@ -13,6 +14,12 @@ let
|
|||||||
hydra-stockholm = { };
|
hydra-stockholm = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pub-repos = mapAttrs make-pub-repo {
|
||||||
|
yacos-backend = {
|
||||||
|
cgit.desc = "Yet Another Check-Out System";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
krebs-repos = mapAttrs make-krebs-repo {
|
krebs-repos = mapAttrs make-krebs-repo {
|
||||||
stockholm = {
|
stockholm = {
|
||||||
cgit.desc = "Make all the systems into 1systems!";
|
cgit.desc = "Make all the systems into 1systems!";
|
||||||
@ -59,6 +66,11 @@ let
|
|||||||
public = false;
|
public = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
make-pub-repo = name: { ... }: {
|
||||||
|
inherit name;
|
||||||
|
public = true;
|
||||||
|
};
|
||||||
|
|
||||||
make-krebs-repo = with git; name: { cgit ? {}, ... }: {
|
make-krebs-repo = with git; name: { cgit ? {}, ... }: {
|
||||||
inherit cgit name;
|
inherit cgit name;
|
||||||
public = true;
|
public = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user