df6827a824
Version 3.5.0 was present but was removed in 8085f08
. Keeping the old version
per discussion at https://github.com/NixOS/nixpkgs/pull/845.
18 lines
369 B
Nix
18 lines
369 B
Nix
{ lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv {
|
|
name = "taskjuggler-3.5.0";
|
|
|
|
inherit ruby;
|
|
gemfile = ./Gemfile;
|
|
lockfile = ./Gemfile.lock;
|
|
gemset = ./gemset.nix;
|
|
|
|
meta = {
|
|
description = "A modern and powerful project management tool";
|
|
homepage = http://taskjuggler.org/;
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|