summary refs log blame commit diff
path: root/pkgs/development/tools/xcpretty/default.nix
blob: 84a6798afe33c73a679fe6580a46ce4d4a87be9e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         







                        
                                                  










                                                               
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "xcpretty";
  gemdir = ./.;

  exes = [ "xcpretty" ];

  passthru = {
    updateScript = bundlerUpdateScript "xcpretty";
  };

  meta = with lib; {
    description     = "Flexible and fast xcodebuild formatter";
    homepage        = https://github.com/supermarin/xcpretty;
    license         = licenses.mit;
    maintainers     = with maintainers; [
      nicknovitski
    ];
  };
}