2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2016-03-17 11:05:11 -07:00
|
|
|
|
2019-04-30 09:04:35 -07:00
|
|
|
bundlerApp {
|
|
|
|
pname = "rake";
|
2017-01-17 15:41:00 -08:00
|
|
|
gemdir = ./.;
|
2019-04-30 09:04:35 -07:00
|
|
|
exes = [ "rake" ];
|
2017-01-17 15:41:00 -08:00
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "rake";
|
|
|
|
|
2016-03-17 11:05:11 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A software task management and build automation tool";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ruby/rake";
|
2016-03-17 11:05:11 -07:00
|
|
|
license = with licenses; mit;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
2016-03-17 11:05:11 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|