22 lines
458 B
Nix
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;
|
|
};
|
|
}
|