drake: init at 0.9.2.0.3.1

This commit is contained in:
romildo
2017-01-24 16:36:22 -02:00
parent 1853f174d1
commit a0d29cf33e
5 changed files with 55 additions and 0 deletions
@@ -0,0 +1,18 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "drake-0.9.2.0.3.1";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "A branch of Rake supporting automatic parallelizing of tasks";
homepage = http://quix.github.io/rake/;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}