16 lines
402 B
Nix
16 lines
402 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|