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