2019-04-07 23:25:09 -07:00
|
|
|
{ lib, bundlerApp, ruby }:
|
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
|
|
|
inherit ruby;
|
|
|
|
pname = "jazzy";
|
|
|
|
gemdir = ./.;
|
2019-04-07 23:25:09 -07:00
|
|
|
exes = [ "jazzy" ];
|
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
|
2017-10-31 23:46:01 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|