summary refs log tree commit diff
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2018-11-02 13:31:20 -0500
committerAustin Seipp <aseipp@pobox.com>2018-11-02 13:52:33 -0500
commit2266f2014b41e29ccf8c70a67a0af0133f8eb270 (patch)
tree109c2f46bfaf86ea259f7a749b63983b1e0c5a57
parentb603856e4446690211956e9de6294614b676172d (diff)
downloadnixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.tar
nixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.tar.gz
nixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.tar.bz2
nixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.tar.lz
nixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.tar.xz
nixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.tar.zst
nixlib-2266f2014b41e29ccf8c70a67a0af0133f8eb270.zip
nixos/postgresql: add myself as maintainer
Signed-off-by: Austin Seipp <aseipp@pobox.com>
-rw-r--r--nixos/modules/services/databases/postgresql.nix2
-rw-r--r--pkgs/servers/sql/postgresql/default.nix8
2 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix
index 6edb1503c233..f592be0e768b 100644
--- a/nixos/modules/services/databases/postgresql.nix
+++ b/nixos/modules/services/databases/postgresql.nix
@@ -271,5 +271,5 @@ in
   };
 
   meta.doc = ./postgresql.xml;
-
+  meta.maintainers = with lib.maintainers; [ thoughtpolice ];
 }
diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix
index b81b4340d767..f8bf08b55b7d 100644
--- a/pkgs/servers/sql/postgresql/default.nix
+++ b/pkgs/servers/sql/postgresql/default.nix
@@ -89,11 +89,11 @@ let
     };
 
     meta = with lib; {
-      homepage = https://www.postgresql.org;
+      homepage    = https://www.postgresql.org;
       description = "A powerful, open source object-relational database system";
-      license = licenses.postgresql;
-      maintainers = [ maintainers.ocharles ];
-      platforms = platforms.unix;
+      license     = licenses.postgresql;
+      maintainers = with maintainers; [ ocharles thoughtpolice ];
+      platforms   = platforms.unix;
     };
   });