postgresql: use team

Main motivation for this is that I'd like to get a feature-freeze ping:
we have old stuff to remove and quite a bit of things ongoing here, so
explicitly being part of the check-up process seems like a good thing.

Also added myself and wolfgangwalther to it.
This commit is contained in:
Maximilian Bosch 2024-11-01 16:53:25 +01:00
parent 344b92a9f8
commit c65705940a
No known key found for this signature in database
3 changed files with 11 additions and 6 deletions

View File

@ -226,10 +226,10 @@ pkgs/development/python-modules/buildcatrust/ @ajs124 @lukegb @mweinelt
/maintainers/scripts/kde @K900 @NickCao @SuperSandro2000 @ttuegel /maintainers/scripts/kde @K900 @NickCao @SuperSandro2000 @ttuegel
# PostgreSQL and related stuff # PostgreSQL and related stuff
/pkgs/servers/sql/postgresql @thoughtpolice /pkgs/servers/sql/postgresql @NixOS/postgres
/nixos/modules/services/databases/postgresql.md @thoughtpolice /nixos/modules/services/databases/postgresql.md @NixOS/postgres
/nixos/modules/services/databases/postgresql.nix @thoughtpolice /nixos/modules/services/databases/postgresql.nix @NixOS/postgres
/nixos/tests/postgresql.nix @thoughtpolice /nixos/tests/postgresql.nix @NixOS/postgres
# Hardened profile & related modules # Hardened profile & related modules
/nixos/modules/profiles/hardened.nix @joachifm /nixos/modules/profiles/hardened.nix @joachifm

View File

@ -845,9 +845,14 @@ with lib.maintainers;
}; };
postgres = { postgres = {
members = [ thoughtpolice ]; members = [
thoughtpolice
ma27
wolfgangwalther
];
scope = "Maintain the PostgreSQL package and plugins along with the NixOS module."; scope = "Maintain the PostgreSQL package and plugins along with the NixOS module.";
shortName = "PostgreSQL"; shortName = "PostgreSQL";
enableFeatureFreezePing = true;
}; };
python = { python = {

View File

@ -320,7 +320,7 @@ let
description = "Powerful, open source object-relational database system"; description = "Powerful, open source object-relational database system";
license = licenses.postgresql; license = licenses.postgresql;
changelog = "https://www.postgresql.org/docs/release/${finalAttrs.version}/"; changelog = "https://www.postgresql.org/docs/release/${finalAttrs.version}/";
maintainers = with maintainers; [ thoughtpolice danbst globin ivan ma27 wolfgangwalther ]; maintainers = with maintainers; [ danbst globin ivan ] ++ teams.postgres.members;
pkgConfigModules = [ "libecpg" "libecpg_compat" "libpgtypes" "libpq" ]; pkgConfigModules = [ "libecpg" "libecpg_compat" "libpgtypes" "libpq" ];
platforms = platforms.unix; platforms = platforms.unix;