16 lines
310 B
Nix
16 lines
310 B
Nix
|
{ lib, bundlerEnv, ruby }:
|
||
|
|
||
|
bundlerEnv {
|
||
|
name = "taskjuggler-3.5.0";
|
||
|
|
||
|
inherit ruby;
|
||
|
gemdir = ./.;
|
||
|
|
||
|
meta = {
|
||
|
description = "A modern and powerful project management tool";
|
||
|
homepage = "http://taskjuggler.org/";
|
||
|
license = lib.licenses.gpl2;
|
||
|
platforms = lib.platforms.unix;
|
||
|
};
|
||
|
}
|