xcpretty: init at 0.3.0 (#48494)

This commit is contained in:
Nick Novitski
2018-11-28 12:21:37 +01:00
committed by zimbatm
parent 8ef639a567
commit f2c07cd63e
6 changed files with 66 additions and 0 deletions
@@ -0,0 +1,27 @@
{ lib, bundlerApp, bundler, bundix }:
bundlerApp {
pname = "xcpretty";
gemdir = ./.;
exes = [ "xcpretty" ];
passthru = {
updateScript = ''
set -e
echo
cd ${toString ./.}
${bundler}/bin/bundle lock --update
${bundix}/bin/bundix
'';
};
meta = with lib; {
description = "Flexible and fast xcodebuild formatter";
homepage = https://github.com/supermarin/xcpretty;
license = licenses.mit;
maintainers = with maintainers; [
nicknovitski
];
};
}