nixpkgs/pkgs/development/tools/build-managers/rake/default.nix

16 lines
354 B
Nix
Raw Normal View History

2019-04-30 17:04:35 +01:00
{ lib, bundlerApp }:
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
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;
2019-04-30 17:04:35 +01:00
maintainers = with maintainers; [ manveru ];
2016-03-17 18:05:11 +00:00
platforms = platforms.unix;
};
}