Files
2026-07-15 14:04:39 -04:00

22 lines
458 B
Nix

{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "xcode-install";
gemdir = ./.;
exes = [ "xcversion" ];
passthru.updateScript = bundlerUpdateScript "xcode-install";
meta = {
description = "Install and update your Xcodes automatically";
homepage = "https://github.com/xcpretty/xcode-install";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ q3k ];
license = lib.licenses.mit;
};
}