pgsync: init at 0.6.6

This commit is contained in:
Fabián Heredia Montiel
2021-04-23 22:36:41 -05:00
parent 93de027ee0
commit 4e96143fe5
5 changed files with 106 additions and 0 deletions
@@ -0,0 +1,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;
};
}