summary refs log tree commit diff
path: root/pkgs/development/mobile/xcodeenv/default.nix
blob: 47686e6d69e9a82d8c64717c64e2915e5054c0ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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;
  };
}