15 lines
313 B
Nix
15 lines
313 B
Nix
{ lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv {
|
|
name = "rake-11.1.1";
|
|
|
|
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;
|
|
};
|
|
}
|