2016-03-17 11:05:11 -07:00
|
|
|
{ lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "rake-11.1.1";
|
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-17 15:41:00 -08:00
|
|
|
gemdir = ./.;
|
|
|
|
|
2016-03-17 11:05:11 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A software task management and build automation tool";
|
|
|
|
homepage = https://github.com/ruby/rake;
|
|
|
|
license = with licenses; mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|