mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
9 lines
263 B
Nix
9 lines
263 B
Nix
{stdenv, xcodeenv, kitchensink, device}:
|
|
|
|
xcodeenv.simulateApp {
|
|
name = "simulate-${kitchensink.name}-${stdenv.lib.replaceChars [" " "(" ")"] ["_" "" ""] device}";
|
|
app = kitchensink;
|
|
inherit device;
|
|
baseDir = "build/iphone/build/Debug-iphonesimulator";
|
|
}
|