nixos/tests/acme: explicitly start the targets we wait for
[NixPkgs.git] / pkgs / applications / office / ledger-web / default.nix
blob00e3636fc3971cba138a2465e0b666cc12c38aa0
1 { lib, bundlerApp, bundlerUpdateScript
2 , withPostgresql ? true, postgresql
3 , withSqlite ? false, sqlite
4 }:
6 bundlerApp {
7   pname = "ledger_web";
8   gemdir = ./.;
9   exes = [ "ledger_web" ];
11   buildInputs =    lib.optional withPostgresql postgresql
12                 ++ lib.optional withSqlite sqlite;
14   passthru.updateScript = bundlerUpdateScript "ledger-web";
16   meta = with lib; {
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";
23   };