My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/misc/taskjuggler/default.nix

21 lines
579 B

{ 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 = "https://taskjuggler.org/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ manveru nicknovitski ];
};
}