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

22 lines
451 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-11-28 11:21:37 +00:00
bundlerApp {
pname = "xcpretty";
gemdir = ./.;
exes = [ "xcpretty" ];
passthru = {
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
];
};
}