2025-08-01 09:39:12 +02:00

21 lines
443 B
Nix

{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
gemdir = ./.;
pname = "pgsync";
exes = [ "pgsync" ];
passthru.updateScript = bundlerUpdateScript "pgsync";
meta = with lib; {
description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)";
homepage = "https://github.com/ankane/pgsync";
license = with licenses; mit;
maintainers = with maintainers; [ fabianhjr ];
};
}