postgresqlPackages.pg_anonymizer: fix meta

Previously the entire `meta` section from `pg-dump-anon` was copied
over including `mainProgram` which doesn't belong here. To avoid similar
issues, fields from the meta section of pg-dump-anon are copied over
explicitly.

+1 -1
+1 -1
pkgs/servers/sql/postgresql/ext/anonymizer.nix
··· 26 EOF 27 ''; 28 29 - meta = pg-dump-anon.meta // { 30 description = "Extension to mask or replace personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database"; 31 }; 32 })
··· 26 EOF 27 ''; 28 29 + meta = lib.getAttrs [ "homepage" "maintainers" "license" ] pg-dump-anon.meta // { 30 description = "Extension to mask or replace personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database"; 31 }; 32 })