about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/drake/default.nix
blob: 15a88b1fc3123857e832bf7816ef995b7b82c5ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}