nixpkgs/pkgs/development/tools/jazzy/default.nix
Lily Ballard 53508b1d8e jazzy: 0.9.0 -> 0.9.5
Also add myself as a maintainer.
2019-03-06 14:06:02 -08:00

19 lines
442 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
lilyball
];
};
}