2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-11-01 06:46:01 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
bundlerApp {
|
2017-11-01 06:46:01 +00:00
|
|
|
pname = "jazzy";
|
|
|
|
gemdir = ./.;
|
2019-04-08 07:25:09 +01:00
|
|
|
exes = [ "jazzy" ];
|
2017-11-01 06:46:01 +00:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "jazzy";
|
2019-06-23 01:34:53 +01: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 02:11:51 +01: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 13:02:47 +01:00
|
|
|
nicknovitski
|
2017-11-01 06:46:01 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|