mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
578 B
Nix
22 lines
578 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "taskjuggler";
|
|
gemdir = ./.;
|
|
|
|
exes = [
|
|
"tj3" "tj3client" "tj3d" "tj3man" "tj3ss_receiver" "tj3ss_sender"
|
|
"tj3ts_receiver" "tj3ts_sender" "tj3ts_summary" "tj3webd"
|
|
];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "taskjuggler";
|
|
|
|
meta = with lib; {
|
|
description = "A modern and powerful project management tool";
|
|
homepage = "http://taskjuggler.org/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
|
};
|
|
}
|