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:
parent
721901cf20
commit
8ec284b8c4
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue