2018-11-17 20:55:49 +00:00
|
|
|
{stdenv}:
|
2013-01-07 15:52:42 +00:00
|
|
|
|
|
|
|
rec {
|
2018-11-17 20:55:49 +00:00
|
|
|
composeXcodeWrapper = import ./compose-xcodewrapper.nix {
|
|
|
|
inherit stdenv;
|
2013-01-07 15:52:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildApp = import ./build-app.nix {
|
2018-11-17 20:55:49 +00:00
|
|
|
inherit stdenv composeXcodeWrapper;
|
2013-01-07 15:52:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
simulateApp = import ./simulate-app.nix {
|
2018-11-17 20:55:49 +00:00
|
|
|
inherit stdenv composeXcodeWrapper;
|
2013-01-07 15:52:42 +00:00
|
|
|
};
|
|
|
|
}
|