2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2015-09-06 04:59:38 +01:00
|
|
|
|
2018-09-11 02:06:29 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "taskjuggler";
|
2017-01-17 23:32:15 +00:00
|
|
|
gemdir = ./.;
|
2015-09-06 04:59:38 +01:00
|
|
|
|
2018-09-11 02:06:29 +01:00
|
|
|
exes = [
|
|
|
|
"tj3" "tj3client" "tj3d" "tj3man" "tj3ss_receiver" "tj3ss_sender"
|
|
|
|
"tj3ts_receiver" "tj3ts_sender" "tj3ts_summary" "tj3webd"
|
|
|
|
];
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "taskjuggler";
|
|
|
|
|
2019-05-03 13:36:56 +01:00
|
|
|
meta = with lib; {
|
2015-09-06 04:59:38 +01:00
|
|
|
description = "A modern and powerful project management tool";
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://taskjuggler.org/";
|
2019-05-03 13:36:56 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
2015-09-06 04:59:38 +01:00
|
|
|
};
|
|
|
|
}
|