nixpkgs/pkgs/development/tools/jazzy/default.nix

22 lines
536 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2017-11-01 06:46:01 +00:00
2019-08-13 21:52:01 +00:00
bundlerApp {
2017-11-01 06:46:01 +00:00
pname = "jazzy";
gemdir = ./.;
exes = [ "jazzy" ];
2017-11-01 06:46:01 +00:00
passthru.updateScript = bundlerUpdateScript "jazzy";
2017-11-01 06:46:01 +00:00
meta = with lib; {
description = "A command-line utility that generates documentation for Swift or Objective-C";
homepage = "https://github.com/realm/jazzy";
2017-11-01 06:46:01 +00:00
license = licenses.mit;
platforms = platforms.darwin;
maintainers = with maintainers; [
peterromfeldhk
lilyball
nicknovitski
2017-11-01 06:46:01 +00:00
];
};
}