nixpkgs/pkgs/development/tools/xcpretty/default.nix

22 lines
453 B
Nix
Raw Normal View History

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