depot/third_party/nixpkgs/pkgs/development/tools/xcode-install/default.nix
Default email d0d8e8fc71 Project import generated by Copybara.
GitOrigin-RevId: d3f7e969b9860fb80750147aeb56dab1c730e756
2021-03-23 19:22:30 +00:00

17 lines
375 B
Nix

{ 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 ];
};
}