git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
519 B
Nix
20 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
|
|
];
|
|
};
|
|
}
|