nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, bundlerApp }:
2
3bundlerApp rec {
4 gemdir = ./.;
5 pname = "pgsync";
6 exes = [ "pgsync" ];
7
8 meta = with lib; {
9 description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)";
10 homepage = "https://github.com/ankane/pgsync";
11 license = with licenses; mit;
12 maintainers = with maintainers; [ fabianhjr ];
13 platforms = platforms.all;
14 };
15}