mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
8 lines
198 B
Nix
8 lines
198 B
Nix
{xcodeenv, kitchensink, bundleId}:
|
|
|
|
xcodeenv.simulateApp {
|
|
name = "simulate-${kitchensink.name}";
|
|
inherit bundleId;
|
|
app = "${kitchensink}/build/iphone/build/Products/Debug-iphonesimulator";
|
|
}
|