1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "xcpretty";
5 gemdir = ./.;
6
7 exes = [ "xcpretty" ];
8
9 passthru = {
10 updateScript = bundlerUpdateScript "xcpretty";
11 };
12
13 meta = with lib; {
14 description = "Flexible and fast xcodebuild formatter";
15 homepage = "https://github.com/supermarin/xcpretty";
16 license = licenses.mit;
17 maintainers = with maintainers; [
18 nicknovitski
19 ];
20 };
21}