summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/rake/default.nix
blob: d2f0a264ba74c400ef8f2cbd837843c9c75677d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

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

  passthru.updateScript = bundlerUpdateScript "rake";

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