summary refs log tree commit diff
path: root/pkgs/development/tools/jazzy/default.nix
blob: 7d96e2c07d26dcaf4fa126f7ac042c8e09d8d321 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerEnv, ruby }:

bundlerEnv rec {
  inherit ruby;
  pname = "jazzy";
  gemdir = ./.;

  meta = with lib; {
    description     = "A command-line utility that generates documentation for Swift or Objective-C";
    homepage        = https://github.com/realm/jazzy;
    license         = licenses.mit;
    platforms       = platforms.darwin;
    maintainers     = with maintainers; [
      peterromfeldhk
    ];
  };
}