mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
16 lines
278 B
Nix
16 lines
278 B
Nix
{stdenv}:
|
|
|
|
rec {
|
|
composeXcodeWrapper = import ./compose-xcodewrapper.nix {
|
|
inherit stdenv;
|
|
};
|
|
|
|
buildApp = import ./build-app.nix {
|
|
inherit stdenv composeXcodeWrapper;
|
|
};
|
|
|
|
simulateApp = import ./simulate-app.nix {
|
|
inherit stdenv composeXcodeWrapper;
|
|
};
|
|
}
|