summary refs log tree commit diff
path: root/pkgs/development/tools/database/pgsync/default.nix
blob: 7e075784f122d8a1f839c67f8420a62f290d40b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  };
}