1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-13 16:15:30 +00:00
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
];
};
}