summary refs log tree commit diff
path: root/pkgs/development/mobile/xcodeenv/default.nix
blob: 7f834688e6361efc643bd84d567f7cc6b7872155 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv}:

rec {
  xcodewrapper = import ./xcodewrapper.nix {
    inherit stdenv;
  };

  buildApp = import ./build-app.nix {
    inherit stdenv xcodewrapper;
  };

  simulateApp = import ./simulate-app.nix {
    inherit stdenv xcodewrapper;
  };
}