summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv/examples/simulate-kitchensink/default.nix
blob: 15a86e338dea39045e6c3023b5e58be6db2c1af1 (plain) (blame)
1
2
3
4
5
6
7
{stdenv, xcodeenv, kitchensink, bundleId}:

xcodeenv.simulateApp {
  name = "simulate-${kitchensink.name}";
  inherit bundleId;
  app = "${kitchensink}/build/iphone/build/Debug-iphonesimulator";
}