1 { lib, bundlerApp, bundlerUpdateScript
2 , withPostgresql ? true, postgresql
3 , withSqlite ? false, sqlite
9 exes = [ "ledger_web" ];
11 buildInputs = lib.optional withPostgresql postgresql
12 ++ lib.optional withSqlite sqlite;
14 passthru.updateScript = bundlerUpdateScript "ledger-web";
17 description = "Web frontend to the Ledger CLI tool";
18 homepage = "https://github.com/peterkeen/ledger-web";
19 license = licenses.mit;
20 maintainers = with maintainers; [ peterhoeg manveru nicknovitski ];
21 platforms = platforms.linux;
22 mainProgram = "ledger_web";