biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / build-managers / drake / default.nix
blob2f753c82521e2e689397922f984ca00954228ea3
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "drake";
5   gemdir = ./.;
6   exes = [ "drake" ];
8   passthru.updateScript = bundlerUpdateScript "drake";
10   meta = with lib; {
11     description = "A branch of Rake supporting automatic parallelizing of tasks";
12     homepage = "http://quix.github.io/rake/";
13     maintainers = with maintainers; [ romildo manveru nicknovitski ];
14     license = licenses.mit;
15     platforms = platforms.unix;
16   };