nixpkgs/pkgs/development/tools/database/pgsync/default.nix
Fabián Heredia Montiel 4e96143fe5 pgsync: init at 0.6.6
2021-04-23 22:36:41 -05:00

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;
};
}