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; enableFeatureFreezePing = true;
}; };
graalvm-ce = {
members = [
bandresen
hlolli
glittershark
babariviere
ericdallo
thiagokokada
];
scope = "Maintain GraalVM Community Edition packages.";
shortName = "GraalVM-CE";
};
haskell = { haskell = {
members = [ members = [
cdepillabout cdepillabout

View File

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

View File

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