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

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

  passthru.updateScript = bundlerUpdateScript "jazzy";

  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
      lilyball
      nicknovitski
    ];
  };
}