Unverified Commit 08645b48 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

postgresql: use team (#352905)

parents 4dbaa043 184cda2b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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
+6 −1
Original line number Diff line number Diff line
@@ -846,9 +846,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 = {
+1 −1
Original line number Diff line number Diff line
@@ -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; [ globin ivan ] ++ teams.postgres.members;
      pkgConfigModules = [ "libecpg" "libecpg_compat" "libpgtypes" "libpq" ];
      platforms   = platforms.unix;