about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/xcode-install/default.nix
blob: 677217b5c810a1ff1b2841bb54a1addfbba4f399 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib
, bundlerApp
}:

bundlerApp {
  pname = "xcode-install";
  gemdir = ./.;
  exes = [ "xcversion" ];

  meta = with lib; {
    description = "Install and update your Xcodes automatically";
    homepage = "https://github.com/xcpretty/xcode-install";
    platforms = platforms.unix;
    maintainers = with maintainers; [ q3k ];
    license = with licenses; [ mit ];
  };
}