3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/build-managers/rake/default.nix

18 lines
443 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2016-03-17 18:05:11 +00:00
2019-04-30 17:04:35 +01:00
bundlerApp {
pname = "rake";
2017-01-17 23:41:00 +00:00
gemdir = ./.;
2019-04-30 17:04:35 +01:00
exes = [ "rake" ];
2017-01-17 23:41:00 +00:00
passthru.updateScript = bundlerUpdateScript "rake";
2016-03-17 18:05:11 +00:00
meta = with lib; {
description = "A software task management and build automation tool";
homepage = https://github.com/ruby/rake;
license = with licenses; mit;
maintainers = with maintainers; [ manveru nicknovitski ];
2016-03-17 18:05:11 +00:00
platforms = platforms.unix;
};
}