about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/rake/default.nix
blob: 8de0130d31bd3717689c09f14981d7d04e73b277 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp }:

bundlerApp {
  pname = "rake";
  gemdir = ./.;
  exes = [ "rake" ];

  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 ];
    platforms = platforms.unix;
  };
}