Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "xcode-install"; 9 gemdir = ./.; 10 exes = [ "xcversion" ]; 11 12 passthru.updateScript = bundlerUpdateScript "xcode-install"; 13 14 meta = with lib; { 15 description = "Install and update your Xcodes automatically"; 16 homepage = "https://github.com/xcpretty/xcode-install"; 17 platforms = platforms.unix; 18 maintainers = with maintainers; [ q3k ]; 19 license = with licenses; [ mit ]; 20 }; 21}