567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
21 lines
441 B
Nix
21 lines
441 B
Nix
{
|
|
lib,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
}:
|
|
|
|
bundlerApp {
|
|
gemdir = ./.;
|
|
pname = "pgsync";
|
|
exes = [ "pgsync" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "pgsync";
|
|
|
|
meta = {
|
|
description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)";
|
|
homepage = "https://github.com/ankane/pgsync";
|
|
license = with lib.licenses; mit;
|
|
maintainers = with lib.maintainers; [ fabianhjr ];
|
|
};
|
|
}
|