about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/drake/default.nix
blob: 15fc682a315ca0e8056e449f49865ccbb151da30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "drake";
  gemdir = ./.;
  exes = [ "drake" ];

  passthru.updateScript = bundlerUpdateScript "drake";

  meta = with lib; {
    description = "A branch of Rake supporting automatic parallelizing of tasks";
    homepage = http://quix.github.io/rake/;
    maintainers = with maintainers; [ romildo manveru nicknovitski ];
    license = licenses.mit;
    platforms = platforms.unix;
  };
}