1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "rake";
9 gemdir = ./.;
10 exes = [ "rake" ];
11
12 passthru.updateScript = bundlerUpdateScript "rake";
13
14 meta = with lib; {
15 description = "Software task management and build automation tool";
16 homepage = "https://github.com/ruby/rake";
17 license = with licenses; mit;
18 maintainers = with maintainers; [
19 manveru
20 nicknovitski
21 ];
22 platforms = platforms.unix;
23 mainProgram = "rake";
24 };
25}