maintainers/team-list: create graalvm-ce team

This commit is contained in:
Thiago Kenji Okada 2023-02-09 23:46:19 +00:00
parent 1da6843f1b
commit 0c7f039bad
3 changed files with 15 additions and 16 deletions

View File

@ -312,6 +312,19 @@ with lib.maintainers; {
enableFeatureFreezePing = true;
};
graalvm-ce = {
members = [
bandresen
hlolli
glittershark
babariviere
ericdallo
thiagokokada
];
scope = "Maintain GraalVM Community Edition packages.";
shortName = "GraalVM-CE";
};
haskell = {
members = [
cdepillabout

View File

@ -141,14 +141,7 @@ let
license = with licenses; [ upl gpl2Classpath bsd3 ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
mainProgram = "java";
maintainers = with maintainers; [
bandresen
hlolli
glittershark
babariviere
ericdallo
thiagokokada
];
maintainers = with maintainers; teams.graalvm-ce.members ++ [ ];
} // meta);
});
in graalvmXXX-ce

View File

@ -68,13 +68,6 @@ stdenv.mkDerivation (args // {
description = "High-Performance Polyglot VM (Product: ${product})";
license = with licenses; [ upl gpl2Classpath bsd3 ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [
bandresen
hlolli
glittershark
babariviere
ericdallo
thiagokokada
];
maintainers = with maintainers; teams.graalvm-ce.members ++ [ ];
} // meta);
})