1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/tools/xcpretty/default.nix
2020-04-10 17:54:53 +01:00

22 lines
453 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "xcpretty";
gemdir = ./.;
exes = [ "xcpretty" ];
passthru = {
updateScript = bundlerUpdateScript "xcpretty";
};
meta = with lib; {
description = "Flexible and fast xcodebuild formatter";
homepage = "https://github.com/supermarin/xcpretty";
license = licenses.mit;
maintainers = with maintainers; [
nicknovitski
];
};
}