From 2621171e58549ccc7d2b5230ebca024ee14d7f5a Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Fri, 6 Jul 2018 23:51:28 -0400 Subject: [PATCH] xcbuild: add alias You can now refer to it as xcodebuild. This is meant to be more discoverable for not familiar with xcbuild. xcodebuild should work in the same way as the xcodebuild that comes with Xcode.app, but it is built entirely with free software. --- pkgs/top-level/all-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ac92e8d2b625..a75f6e5ce14f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8603,10 +8603,11 @@ with pkgs; xc3sprog = callPackage ../development/tools/misc/xc3sprog { }; - xcbuild = callPackage ../development/tools/xcbuild/wrapper.nix { + xcodebuild = callPackage ../development/tools/xcbuild/wrapper.nix { inherit (darwin.apple_sdk.frameworks) CoreServices CoreGraphics ImageIO; stdenv = buildPackages.clangStdenv; }; + xcbuild = xcodebuild; xcbuildHook = makeSetupHook { deps = [ xcbuild ]; } ../development/tools/xcbuild/setup-hook.sh ;