python312Packages.mandown: 1.10.0 -> 1.10.1 (#370595)
[NixPkgs.git] / pkgs / development / tools / database / pgsync / default.nix
blobd1ae5a11b34a7f6181d6ed9a2c678db107d34372
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp rec {
8   gemdir = ./.;
9   pname = "pgsync";
10   exes = [ "pgsync" ];
12   passthru.updateScript = bundlerUpdateScript "pgsync";
14   meta = with lib; {
15     description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)";
16     homepage = "https://github.com/ankane/pgsync";
17     license = with licenses; mit;
18     maintainers = with maintainers; [ fabianhjr ];
19   };