nixpkgs/pkgs/development/tools/build-managers/rake/default.nix

16 lines
344 B
Nix
Raw Normal View History

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