1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/tools/build-managers/rake/default.nix
2017-01-18 00:52:57 +01:00

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