From dab2f3df3c8bdcb27f7089e2b84c1bce5935d0be Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 1 Nov 2024 16:53:25 +0100 Subject: [PATCH] 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. --- maintainers/team-list.nix | 7 ++++++- pkgs/servers/sql/postgresql/generic.nix | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 3b041aab6d0cd..69f66da1bde75 100644 --- a/maintainers/team-list.nix +++ b/maintainers/team-list.nix @@ -845,9 +845,14 @@ with lib.maintainers; }; postgres = { - members = [ thoughtpolice ]; + members = [ + thoughtpolice + ma27 + wolfgangwalther + ]; scope = "Maintain the PostgreSQL package and plugins along with the NixOS module."; shortName = "PostgreSQL"; + enableFeatureFreezePing = true; }; python = { diff --git a/pkgs/servers/sql/postgresql/generic.nix b/pkgs/servers/sql/postgresql/generic.nix index decaedc5f85f1..7fc13537ebb0e 100644 --- a/pkgs/servers/sql/postgresql/generic.nix +++ b/pkgs/servers/sql/postgresql/generic.nix @@ -320,7 +320,7 @@ let description = "Powerful, open source object-relational database system"; license = licenses.postgresql; 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" ]; platforms = platforms.unix;