Merge pull request #193570 from ivan/pgroonga_database

postgresqlPackages.pgroonga: also install the pgroonga_database extension
This commit is contained in:
Mario Rodas 2022-10-01 20:56:58 -05:00 committed by GitHub
commit 695ec17b60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
install -D pgroonga.so -t $out/lib/
install -D pgroonga.control -t $out/share/postgresql/extension
install -D data/pgroonga-*.sql -t $out/share/postgresql/extension
install -D pgroonga_database.so -t $out/lib/
install -D pgroonga_database.control -t $out/share/postgresql/extension
install -D data/pgroonga_database-*.sql -t $out/share/postgresql/extension
'';
meta = with lib; {
@ -31,6 +35,6 @@ stdenv.mkDerivation rec {
homepage = "https://pgroonga.github.io/";
license = licenses.postgresql;
platforms = postgresql.meta.platforms;
maintainers = with maintainers; [ DerTim1 ];
maintainers = with maintainers; [ DerTim1 ivan ];
};
}