mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
ae08ff7b71
Add `allowHigher` option to let higher versions of Xcode. This is useful when xcodeenv is used for `nix-shell` for developers and their xcode version might be a bit newer than required one. Signed-off-by: Jakub Sokołowski <jakub@status.im>
10 lines
252 B
Nix
10 lines
252 B
Nix
{ callPackage }:
|
|
|
|
rec {
|
|
composeXcodeWrapper = callPackage ./compose-xcodewrapper.nix { };
|
|
|
|
buildApp = callPackage ./build-app.nix { inherit composeXcodeWrapper; };
|
|
|
|
simulateApp = callPackage ./simulate-app.nix { inherit composeXcodeWrapper; };
|
|
}
|