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

xcodeenv.simulateApp {
  name = "simulate-${kitchensink.name}-${stdenv.lib.replaceChars [" " "(" ")"] ["_" "" ""] device}";
  appName = "KitchenSink";
  app = kitchensink;
  inherit device;
  baseDir = "build/iphone/build/Debug-iphonesimulator";
}