1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "rake";
5 gemdir = ./.;
6 exes = [ "rake" ];
7
8 passthru.updateScript = bundlerUpdateScript "rake";
9
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 };
18}