2019-07-22 12:02:47 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-11-01 06:46:01 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
bundlerApp {
|
2017-11-01 06:46:01 +00:00
|
|
|
pname = "jazzy";
|
|
|
|
gemdir = ./.;
|
2019-04-08 06:25:09 +00:00
|
|
|
exes = [ "jazzy" ];
|
2017-11-01 06:46:01 +00:00
|
|
|
|
2019-07-22 12:02:47 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "jazzy";
|
2019-06-23 00:34:53 +00:00
|
|
|
|
2017-11-01 06:46:01 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A command-line utility that generates documentation for Swift or Objective-C";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/realm/jazzy";
|
2017-11-01 06:46:01 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
peterromfeldhk
|
2019-02-26 07:01:56 +00:00
|
|
|
lilyball
|
2019-07-22 12:02:47 +00:00
|
|
|
nicknovitski
|
2017-11-01 06:46:01 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|