summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ra/rake/package.nix
blob: 30a9d44aff7d704eff9e872adb78ef141004e6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  bundlerApp,
  bundlerUpdateScript,
}:

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

  passthru.updateScript = bundlerUpdateScript "rake";

  meta = {
    description = "Software task management and build automation tool";
    homepage = "https://github.com/ruby/rake";
    license = with lib.licenses; mit;
    maintainers = with lib.maintainers; [
      nicknovitski
    ];
    platforms = lib.platforms.unix;
    mainProgram = "rake";
  };
}