61f20c94ca
The version was released 8 years ago and does not build anymore
16 lines
308 B
Nix
16 lines
308 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;
|
|
};
|
|
}
|