Unverified Commit a9d91573 authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

postgresqlPackages.anonymizer: fix maintainer pings

Because of `lib.getAttrs`,
`postgresqlPackages.anonymizer.meta.teamsPosition` returned the path to
`lib/attrsets.nix`. This caused maintainer pings for that file for the
maintainers of `postgresqlPackages.anonymizer`.

Using regular `inherit` syntax moves the definition of the `teams`
attribute in the right file and fixes the maintainer pings.
parent c16d94e2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,7 +23,8 @@ buildPgrxExtension {

  passthru.tests = nixosTests.postgresql.anonymizer.passthru.override postgresql;

  meta = lib.getAttrs [ "homepage" "teams" "license" ] pg-dump-anon.meta // {
  meta = {
    inherit (pg-dump-anon.meta) homepage teams license;
    description = "Extension to mask or replace personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database";
  };
}