about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/rake/default.nix
blob: 3cf85b5fcb516582e2f9bc5f9006cda70dc6de5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
  };
}