3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/build-managers/rake/default.nix

18 lines
376 B
Nix
Raw Normal View History

2016-03-17 18:05:11 +00:00
{ 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;
};
}