mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
8 lines
197 B
Nix
8 lines
197 B
Nix
{stdenv, xcodeenv, kitchensink, bundleId}:
|
|
|
|
xcodeenv.simulateApp {
|
|
name = "simulate-${kitchensink.name}";
|
|
inherit bundleId;
|
|
app = "${kitchensink}/build/iphone/build/Debug-iphonesimulator";
|
|
}
|