depot/third_party/nixpkgs/pkgs/development/mobile/xcodeenv/default.nix

16 lines
278 B
Nix
Raw Normal View History

{stdenv}:
rec {
composeXcodeWrapper = import ./compose-xcodewrapper.nix {
inherit stdenv;
};
buildApp = import ./build-app.nix {
inherit stdenv composeXcodeWrapper;
};
simulateApp = import ./simulate-app.nix {
inherit stdenv composeXcodeWrapper;
};
}