Guy Chronister ade0f7fdd8 localized: Move some more apps to by-name
Fix eval failure #1
2025-03-27 13:54:55 -05:00

26 lines
437 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
];
};
}