nixpkgs/pkgs/development/tools/build-managers/rake/default.nix
2017-09-07 17:50:36 +08:00

16 lines
344 B
Nix

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