nixpkgs/pkgs/development/tools/jazzy/default.nix
Lily Ballard 3712d3672d jazzy: 0.9.6 -> 0.10.0
Also define passthru.updateScript.
2019-07-09 15:05:26 -07:00

22 lines
501 B
Nix

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