1693fb2285
GitOrigin-RevId: 420f89ceb267b461eed5d025b6c3c0e57703cc5c
15 lines
311 B
Nix
15 lines
311 B
Nix
{ lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv {
|
|
name = "taskjuggler-3.5.0";
|
|
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
|
|
meta = {
|
|
description = "A modern and powerful project management tool";
|
|
homepage = "https://taskjuggler.org/";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|