2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-10-31 23:46:01 -07:00
|
|
|
|
2019-04-07 23:25:09 -07:00
|
|
|
bundlerApp rec {
|
2017-10-31 23:46:01 -07:00
|
|
|
pname = "jazzy";
|
|
|
|
gemdir = ./.;
|
2019-04-07 23:25:09 -07:00
|
|
|
exes = [ "jazzy" ];
|
2017-10-31 23:46:01 -07:00
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "jazzy";
|
2019-06-22 17:34:53 -07:00
|
|
|
|
2017-10-31 23:46:01 -07:00
|
|
|
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
|
2019-02-25 23:01:56 -08:00
|
|
|
lilyball
|
2019-07-22 05:02:47 -07:00
|
|
|
nicknovitski
|
2017-10-31 23:46:01 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|