nixpkgs/pkgs/development/tools/database/pgsync/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
447 B
Nix
Raw Normal View History

2021-09-29 15:48:48 +00:00
{ lib, bundlerApp, bundlerUpdateScript }:
2021-04-24 03:19:21 +00:00
bundlerApp rec {
gemdir = ./.;
pname = "pgsync";
exes = [ "pgsync" ];
2021-09-29 15:48:48 +00:00
passthru.updateScript = bundlerUpdateScript "pgsync";
2021-04-24 03:19:21 +00:00
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 ];
};
}