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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
453 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";
2018-11-28 11:21:37 +00:00
license = licenses.mit;
maintainers = with maintainers; [
nicknovitski
];
};
}