2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript
|
2016-08-31 04:26:23 +01:00
|
|
|
, withPostgresql ? true, postgresql
|
|
|
|
, withSqlite ? false, sqlite
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
bundlerApp {
|
2019-04-30 16:31:21 +01:00
|
|
|
pname = "ledger_web";
|
2017-01-17 23:29:36 +00:00
|
|
|
gemdir = ./.;
|
2019-04-30 16:31:21 +01:00
|
|
|
exes = [ "ledger_web" ];
|
2016-08-31 04:26:23 +01:00
|
|
|
|
2016-09-07 04:06:50 +01:00
|
|
|
buildInputs = lib.optional withPostgresql postgresql
|
|
|
|
++ lib.optional withSqlite sqlite;
|
2016-08-31 04:26:23 +01:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "ledger-web";
|
|
|
|
|
2016-09-07 04:06:50 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A web frontend to the Ledger CLI tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/peterkeen/ledger-web";
|
2016-09-07 04:06:50 +01:00
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ peterhoeg manveru nicknovitski ];
|
2016-09-07 04:06:50 +01:00
|
|
|
platforms = platforms.linux;
|
2016-08-31 04:26:23 +01:00
|
|
|
};
|
|
|
|
}
|