mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
22 lines
451 B
Nix
22 lines
451 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
|
|
];
|
|
};
|
|
}
|