summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/rake/default.nix
blob: f23edfd5f63f3e68e397f9e11527e82c00d9bd78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerEnv, ruby }:

bundlerEnv {
  name = "rake-${(import ./gemset.nix).rake.version}";

  inherit ruby;
  gemdir = ./.;

  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;
  };
}