biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / xcpretty / default.nix
blob9c24b98100505c44140d7a8e8f4d78e7ed6bae9b
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "xcpretty";
5   gemdir = ./.;
7   exes = [ "xcpretty" ];
9   passthru = {
10     updateScript = bundlerUpdateScript "xcpretty";
11   };
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   };