pg-dump-anon: modernize

This commit is contained in:
Wolfgang Walther
2025-09-24 12:54:43 +02:00
parent 8d25e18ef5
commit 2cfe2d18ab

View File

@@ -13,7 +13,7 @@ buildGoModule rec {
src = fetchFromGitLab {
owner = "dalibo";
repo = "postgresql_anonymizer";
rev = version;
tag = version;
hash = "sha256-MGdGvd4P1fFKdd6wnS2V5Tdly6hJlAmSA4TspnO/6Tk=";
};
@@ -29,11 +29,11 @@ buildGoModule rec {
--prefix PATH : ${lib.makeBinPath [ postgresql ]}
'';
meta = with lib; {
meta = {
description = "Export databases with data being anonymized with the anonymizer extension";
homepage = "https://postgresql-anonymizer.readthedocs.io/en/stable/";
teams = [ teams.flyingcircus ];
license = licenses.postgresql;
teams = [ lib.teams.flyingcircus ];
license = lib.licenses.postgresql;
mainProgram = "pg_dump_anon";
};
}