maintainers/teams: add cosmopolitan team

This commit is contained in:
Louis Bettens 2022-03-29 21:22:06 +02:00
parent bd84351def
commit 9f4b404b5c
4 changed files with 11 additions and 3 deletions

View file

@ -70,6 +70,14 @@ with lib.maintainers; {
scope = "Maintain the Chia blockchain and its dependencies";
};
cosmopolitan = {
members = [
lourkeur
tomberek
];
scope = "Maintain the Cosmopolitan LibC and related programs.";
};
deshaw = {
# Verify additions to this team with at least one already existing member of the team.
members = [

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
platforms = platforms.x86_64;
badPlatforms = platforms.darwin;
license = licenses.isc;
maintainers = with maintainers; [ lourkeur tomberek ];
maintainers = teams.cosmopolitan.members;
mainProgram = "python.com";
};
}

View file

@ -40,6 +40,6 @@ stdenv.mkDerivation rec {
platforms = platforms.x86_64;
badPlatforms = platforms.darwin;
license = licenses.isc;
maintainers = with maintainers; [ lourkeur tomberek ];
maintainers = teams.cosmopolitan.members;
};
}

View file

@ -35,6 +35,6 @@ stdenv.mkDerivation {
homepage = "https://justine.lol/cosmopolitan/";
description = "compiler for Cosmopolitan C programs";
license = licenses.mit;
maintainers = with maintainers; [ lourkeur tomberek ];
maintainers = teams.cosmopolitan.members;
};
}