nixpkgs/pkgs/development/tools/jazzy/default.nix
2019-07-22 12:02:47 +00:00

22 lines
538 B
Nix

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