summary refs log tree commit diff
path: root/pkgs/development/tools/xcpretty/default.nix
blob: 84a6798afe33c73a679fe6580a46ce4d4a87be9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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
    ];
  };
}