e8194c2c5b
* remove EOL ruby versions for security and maintenance reasons. * only expose ruby_MAJOR_MINOR to the top-level. we don't provide guarantees for the TINY version. * mark all related packages as broken * switch the default ruby version from 2.3.x to 2.4.x
17 lines
344 B
Nix
17 lines
344 B
Nix
{ lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv {
|
|
name = "taskjuggler-3.5.0";
|
|
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
|
|
meta = {
|
|
broken = true; # needs ruby 2.0
|
|
description = "A modern and powerful project management tool";
|
|
homepage = http://taskjuggler.org/;
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|