2021-10-01 09:20:50 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2021-04-25 03:57:28 +00:00
|
|
|
|
|
|
|
bundlerApp rec {
|
|
|
|
gemdir = ./.;
|
|
|
|
pname = "pgsync";
|
|
|
|
exes = [ "pgsync" ];
|
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "pgsync";
|
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|