about summary refs log tree commit diff
path: root/pkgs/development/tools/xcpretty/default.nix
blob: 9c24b98100505c44140d7a8e8f4d78e7ed6bae9b (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
    ];
  };
}