My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/jazzy/default.nix

21 lines
536 B

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
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
];
};
}