1 { lib, stdenv, fetchurl, unzip }:
3 stdenv.mkDerivation (finalAttrs: {
8 url = "https://github.com/XcodesOrg/xcodes/releases/download/${finalAttrs.version}/xcodes.zip";
9 hash = "sha256-PtXF2eqNfEX29EtXlcjdxrUs7BPn/YurUuFFeLpXwrk=";
12 nativeBuildInputs = [ unzip ];
27 install -m755 xcodes $out/bin/xcodes
34 changelog = "https://github.com/XcodesOrg/xcodes/releases/tag/${finalAttrs.version}";
35 description = "Command-line tool to install and switch between multiple versions of Xcode";
36 homepage = "https://github.com/XcodesOrg/xcodes";
37 license = licenses.mit;
38 maintainers = with maintainers; [ _0x120581f ];
39 platforms = platforms.darwin;