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