1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 gemdir = ./.;
9 pname = "pgsync";
10 exes = [ "pgsync" ];
11
12 passthru.updateScript = bundlerUpdateScript "pgsync";
13
14 meta = with lib; {
15 description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)";
16 homepage = "https://github.com/ankane/pgsync";
17 license = with licenses; mit;
18 maintainers = with maintainers; [ fabianhjr ];
19 };
20}