https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
15 lines
293 B
Nix
15 lines
293 B
Nix
{ stdenv, lib }:
|
|
|
|
rec {
|
|
composeXcodeWrapper = import ./compose-xcodewrapper.nix {
|
|
inherit stdenv;
|
|
};
|
|
|
|
buildApp = import ./build-app.nix {
|
|
inherit stdenv lib composeXcodeWrapper;
|
|
};
|
|
|
|
simulateApp = import ./simulate-app.nix {
|
|
inherit stdenv lib composeXcodeWrapper;
|
|
};
|
|
}
|