diff --git a/ci/OWNERS b/ci/OWNERS index 3f78b03d76ce..886cb7869ec5 100644 --- a/ci/OWNERS +++ b/ci/OWNERS @@ -226,10 +226,10 @@ pkgs/development/python-modules/buildcatrust/ @ajs124 @lukegb @mweinelt /maintainers/scripts/kde @K900 @NickCao @SuperSandro2000 @ttuegel # PostgreSQL and related stuff -/pkgs/servers/sql/postgresql @thoughtpolice -/nixos/modules/services/databases/postgresql.md @thoughtpolice -/nixos/modules/services/databases/postgresql.nix @thoughtpolice -/nixos/tests/postgresql.nix @thoughtpolice +/pkgs/servers/sql/postgresql @NixOS/postgres +/nixos/modules/services/databases/postgresql.md @NixOS/postgres +/nixos/modules/services/databases/postgresql.nix @NixOS/postgres +/nixos/tests/postgresql.nix @NixOS/postgres # Hardened profile & related modules /nixos/modules/profiles/hardened.nix @joachifm diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 3b041aab6d0c..69f66da1bde7 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 decaedc5f85f..7fc13537ebb0 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;