nixos/postgresql: add myself as maintainer

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2018-11-02 13:31:20 -05:00
parent b603856e44
commit 2266f2014b
2 changed files with 5 additions and 5 deletions

View File

@ -271,5 +271,5 @@ in
}; };
meta.doc = ./postgresql.xml; meta.doc = ./postgresql.xml;
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
} }

View File

@ -89,11 +89,11 @@ let
}; };
meta = with lib; { meta = with lib; {
homepage = https://www.postgresql.org; homepage = https://www.postgresql.org;
description = "A powerful, open source object-relational database system"; description = "A powerful, open source object-relational database system";
license = licenses.postgresql; license = licenses.postgresql;
maintainers = [ maintainers.ocharles ]; maintainers = with maintainers; [ ocharles thoughtpolice ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
}); });