rake: init at 11.1.1

This commit is contained in:
Roman Naumann
2016-04-29 15:45:11 +02:00
parent f95ba43e8b
commit 61c8af996f
5 changed files with 43 additions and 0 deletions
@@ -0,0 +1,17 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "rake-11.1.1";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
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;
};
}