biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / jazzy / default.nix
bloba0561040704cf280c14b2f9667a7f270e40a9774
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "jazzy";
5   gemdir = ./.;
6   exes = [ "jazzy" ];
8   passthru.updateScript = bundlerUpdateScript "jazzy";
10   meta = with lib; {
11     description     = "A command-line utility that generates documentation for Swift or Objective-C";
12     homepage        = "https://github.com/realm/jazzy";
13     license         = licenses.mit;
14     platforms       = platforms.darwin;
15     maintainers     = with maintainers; [
16       peterromfeldhk
17       lilyball
18       nicknovitski
19     ];
20   };