f61cd259d4
GitOrigin-RevId: 82155ff501c7622cb2336646bb62f7624261f6d7
16 lines
447 B
Nix
16 lines
447 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp rec {
|
|
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 ];
|
|
};
|
|
}
|