nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 20 lines 441 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 gemdir = ./.; 9 pname = "pgsync"; 10 exes = [ "pgsync" ]; 11 12 passthru.updateScript = bundlerUpdateScript "pgsync"; 13 14 meta = { 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 lib.licenses; mit; 18 maintainers = with lib.maintainers; [ fabianhjr ]; 19 }; 20}