2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2018-11-28 11:21:37 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "xcpretty";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
exes = [ "xcpretty" ];
|
|
|
|
|
|
|
|
passthru = {
|
2019-07-22 13:02:47 +01:00
|
|
|
updateScript = bundlerUpdateScript "xcpretty";
|
2018-11-28 11:21:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Flexible and fast xcodebuild formatter";
|
|
|
|
homepage = https://github.com/supermarin/xcpretty;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
nicknovitski
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|