python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / database / pgsync / default.nix
blob7e075784f122d8a1f839c67f8420a62f290d40b3
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp rec {
4   gemdir = ./.;
5   pname = "pgsync";
6   exes = [ "pgsync" ];
8   passthru.updateScript = bundlerUpdateScript "pgsync";
10   meta = with lib; {
11     description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)";
12     homepage    = "https://github.com/ankane/pgsync";
13     license     = with licenses; mit;
14     maintainers = with maintainers; [ fabianhjr ];
15   };