16 lines
344 B
Nix
Raw Normal View History

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