1{
2 lib,
3 bundlerApp,
4}:
5
6bundlerApp {
7 pname = "xcode-install";
8 gemdir = ./.;
9 exes = [ "xcversion" ];
10
11 meta = with lib; {
12 description = "Install and update your Xcodes automatically";
13 homepage = "https://github.com/xcpretty/xcode-install";
14 platforms = platforms.unix;
15 maintainers = with maintainers; [ q3k ];
16 license = with licenses; [ mit ];
17 };
18}