nixpkgs/pkgs/development/tools/jazzy/default.nix
2024-07-02 15:32:33 -04:00

21 lines
519 B
Nix

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