From 1c80a9676e65cbb003db9d1003f418f080597382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Boros?= Date: Wed, 15 Jul 2026 16:03:58 +0300 Subject: [PATCH] chore(nix): remove maintainers field from package definitions The `maintainers` meta field is meant for the maintainer of the package definition, not the upstream package. In this repo the package definitions are implicitly maintained by the Supabase team, so the field carried over upstream/nixpkgs maintainers who don't maintain these definitions. Remove it everywhere. Co-Authored-By: Claude Opus 4.8 --- nix/cargo-pgrx/default.nix | 1 - nix/docs/adding-new-package.md | 1 - nix/ext/gdal.nix | 7 ------- nix/ext/pgmq/default.nix | 1 - nix/ext/plpgsql-check.nix | 1 - nix/ext/supautils.nix | 1 - nix/pgbouncer.nix | 1 - nix/postgresql/generic.nix | 8 -------- 8 files changed, 21 deletions(-) diff --git a/nix/cargo-pgrx/default.nix b/nix/cargo-pgrx/default.nix index 87dbf6fe15..ff9b916eb9 100644 --- a/nix/cargo-pgrx/default.nix +++ b/nix/cargo-pgrx/default.nix @@ -51,7 +51,6 @@ let homepage = "https://github.com/pgcentralfoundation/pgrx"; changelog = "https://github.com/pgcentralfoundation/pgrx/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; mainProgram = "cargo-pgrx"; }; }; diff --git a/nix/docs/adding-new-package.md b/nix/docs/adding-new-package.md index f3f58578d2..97e467baeb 100644 --- a/nix/docs/adding-new-package.md +++ b/nix/docs/adding-new-package.md @@ -42,7 +42,6 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Open-source vector similarity search for Postgres"; homepage = "https://github.com/${src.owner}/${src.repo}"; - maintainers = [ "olirice" ]; platforms = postgresql.meta.platforms; license = licenses.postgresql; }; diff --git a/nix/ext/gdal.nix b/nix/ext/gdal.nix index c4dba3e695..cf4cf3468a 100644 --- a/nix/ext/gdal.nix +++ b/nix/ext/gdal.nix @@ -62,13 +62,6 @@ stdenv.mkDerivation rec { description = "Translator library for raster geospatial data formats (PostGIS-focused build)"; homepage = "https://www.gdal.org/"; license = licenses.mit; - maintainers = - with maintainers; - teams.geospatial.members - ++ [ - marcweber - dotlambda - ]; platforms = platforms.unix; }; } diff --git a/nix/ext/pgmq/default.nix b/nix/ext/pgmq/default.nix index 42613b6acd..c12531f2d6 100644 --- a/nix/ext/pgmq/default.nix +++ b/nix/ext/pgmq/default.nix @@ -91,7 +91,6 @@ let meta = with lib; { description = "A lightweight message queue. Like AWS SQS and RSMQ but on Postgres."; homepage = "https://github.com/tembo-io/pgmq"; - maintainers = with maintainers; [ olirice ]; inherit (postgresql.meta) platforms; license = licenses.postgresql; }; diff --git a/nix/ext/plpgsql-check.nix b/nix/ext/plpgsql-check.nix index 05542b9498..a9901eb0a5 100644 --- a/nix/ext/plpgsql-check.nix +++ b/nix/ext/plpgsql-check.nix @@ -92,7 +92,6 @@ let homepage = "https://github.com/okbob/plpgsql_check"; changelog = "https://github.com/okbob/plpgsql_check/releases/tag/v${version}"; license = licenses.mit; - maintainers = [ maintainers.marsam ]; inherit (postgresql.meta) platforms; }; }; diff --git a/nix/ext/supautils.nix b/nix/ext/supautils.nix index caaa8121e1..1b6315fa7f 100644 --- a/nix/ext/supautils.nix +++ b/nix/ext/supautils.nix @@ -28,7 +28,6 @@ stdenv.mkDerivation rec { meta = with lib; { description = "PostgreSQL extension for enhanced security"; homepage = "https://github.com/supabase/${pname}"; - maintainers = with maintainers; [ steve-chavez ]; platforms = postgresql.meta.platforms; license = licenses.postgresql; }; diff --git a/nix/pgbouncer.nix b/nix/pgbouncer.nix index f4afed11b5..91e42c230d 100644 --- a/nix/pgbouncer.nix +++ b/nix/pgbouncer.nix @@ -47,7 +47,6 @@ stdenv.mkDerivation rec { replaceStrings [ "." ] [ "_" ] version }"; license = licenses.isc; - maintainers = with maintainers; [ _1000101 ]; platforms = platforms.all; }; } diff --git a/nix/postgresql/generic.nix b/nix/postgresql/generic.nix index b43b7f6be6..44e4730e83 100644 --- a/nix/postgresql/generic.nix +++ b/nix/postgresql/generic.nix @@ -350,14 +350,6 @@ let license = licenses.postgresql; changelog = "https://www.postgresql.org/docs/release/${finalAttrs.version}/"; teams = [ ]; - maintainers = with maintainers; [ - thoughtpolice - danbst - globin - ivan - ma27 - wolfgangwalther - ]; pkgConfigModules = [ "libecpg" "libecpg_compat"