2021-01-17 18:28:51 +01:00
|
|
|
{ stdenv, lib }:
|
2013-01-07 16:52:42 +01:00
|
|
|
|
|
|
|
rec {
|
2018-11-17 21:55:49 +01:00
|
|
|
composeXcodeWrapper = import ./compose-xcodewrapper.nix {
|
|
|
|
inherit stdenv;
|
2013-01-07 16:52:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildApp = import ./build-app.nix {
|
2021-01-17 18:28:51 +01:00
|
|
|
inherit stdenv lib composeXcodeWrapper;
|
2013-01-07 16:52:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
simulateApp = import ./simulate-app.nix {
|
2021-01-17 18:28:51 +01:00
|
|
|
inherit stdenv lib composeXcodeWrapper;
|
2013-01-07 16:52:42 +01:00
|
|
|
};
|
|
|
|
}
|