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