2021-01-17 17:28:51 +00:00
|
|
|
{ stdenv, lib }:
|
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 {
|
2021-01-17 17:28:51 +00:00
|
|
|
inherit stdenv lib composeXcodeWrapper;
|
2013-01-07 15:52:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
simulateApp = import ./simulate-app.nix {
|
2021-01-17 17:28:51 +00:00
|
|
|
inherit stdenv lib composeXcodeWrapper;
|
2013-01-07 15:52:42 +00:00
|
|
|
};
|
|
|
|
}
|