From b39af0171f34d210849c95cdba7a434ff2192907 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 | 3 ++- pkgs/servers/sql/postgresql/generic.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 3b041aab6d0cd..f6b194e75a3e5 100644 --- a/maintainers/team-list.nix +++ b/maintainers/team-list.nix @@ -845,9 +845,10 @@ 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;