nixpkgs/pkgs/development/tools/jazzy/default.nix
2017-11-02 22:55:28 +08:00

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
];
};
}