2016-03-17 18:05:11 +00:00
|
|
|
{ lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
2017-09-07 10:50:26 +01:00
|
|
|
name = "rake-${(import ./gemset.nix).rake.version}";
|
2016-03-17 18:05:11 +00:00
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-17 23:41:00 +00:00
|
|
|
gemdir = ./.;
|
|
|
|
|
2016-03-17 18:05:11 +00: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;
|
|
|
|
};
|
|
|
|
}
|