summary refs log tree commit diff
path: root/pkgs/development/tools/database/pgsync/default.nix
blob: f89b25bf0a7749cccbc1ecdc9845bef5a2571302 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp }:

bundlerApp rec {
  gemdir = ./.;
  pname = "pgsync";
  exes = [ "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 ];
    platforms   = platforms.all;
  };
}