nixpkgs/pkgs/development/mobile/xcodeenv/default.nix
Jakub Sokołowski ae08ff7b71
xcodeenv: allow versions higher than specified
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>
2023-04-06 19:20:56 +02:00

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