2020-04-24 23:36:52 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "rake";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "rake" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "rake";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Software task management and build automation tool";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/ruby/rake";
|
|
|
|
license = with licenses; mit;
|
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
|
|
|
platforms = platforms.unix;
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "rake";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|