nixpkgs/pkgs/development/tools/jazzy/default.nix
Lily Ballard b1bb10b7ae jazzy: 0.9.5 -> 0.9.6
Also switch from `bundlerEnv` to `bundlerApp`.
2019-04-10 13:33:06 -07:00

20 lines
464 B
Nix

{ lib, bundlerApp, ruby }:
bundlerApp rec {
inherit ruby;
pname = "jazzy";
gemdir = ./.;
exes = [ "jazzy" ];
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
];
};
}