18 lines
427 B
Nix
18 lines
427 B
Nix
|
{ lib, bundlerEnv, ruby }:
|
||
|
|
||
|
bundlerEnv rec {
|
||
|
inherit ruby;
|
||
|
pname = "jazzy";
|
||
|
gemdir = ./.;
|
||
|
|
||
|
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
|
||
|
];
|
||
|
};
|
||
|
}
|