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.
This commit is contained in:
Maximilian Bosch 2024-03-19 12:25:48 +01:00
parent 721901cf20
commit 8ec284b8c4
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: {
EOF
'';
meta = pg-dump-anon.meta // {
meta = lib.getAttrs [ "homepage" "maintainers" "license" ] pg-dump-anon.meta // {
description = "Extension to mask or replace personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database";
};
})