tana: 1.0.17 -> 1.0.18 (#363483)
[NixPkgs.git] / pkgs / development / tools / xcpretty / default.nix
blob322e3f4cae1790663a1b6422e06bedc4c8f9ac41
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "xcpretty";
9   gemdir = ./.;
11   exes = [ "xcpretty" ];
13   passthru = {
14     updateScript = bundlerUpdateScript "xcpretty";
15   };
17   meta = with lib; {
18     description = "Flexible and fast xcodebuild formatter";
19     homepage = "https://github.com/supermarin/xcpretty";
20     license = licenses.mit;
21     maintainers = with maintainers; [
22       nicknovitski
23     ];
24   };