biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / build-managers / rake / default.nix
blob9efb8881ab79c74873ffd252949667b5b8761fec
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "rake";
5   gemdir = ./.;
6   exes = [ "rake" ];
8   passthru.updateScript = bundlerUpdateScript "rake";
10   meta = with lib; {
11     description = "A software task management and build automation tool";
12     homepage = "https://github.com/ruby/rake";
13     license  = with licenses; mit;
14     maintainers = with maintainers; [ manveru nicknovitski ];
15     platforms = platforms.unix;
16     mainProgram = "rake";
17   };