2019-04-08 07:25:09 +01:00
|
|
|
{ lib, bundlerApp, ruby }:
|
2017-11-01 06:46:01 +00:00
|
|
|
|
2019-04-08 07:25:09 +01:00
|
|
|
bundlerApp rec {
|
2017-11-01 06:46:01 +00:00
|
|
|
inherit ruby;
|
|
|
|
pname = "jazzy";
|
|
|
|
gemdir = ./.;
|
2019-04-08 07:25:09 +01:00
|
|
|
exes = [ "jazzy" ];
|
2017-11-01 06:46:01 +00: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-26 07:01:56 +00:00
|
|
|
lilyball
|
2017-11-01 06:46:01 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|