mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-18 20:31:40 +03:00
edd57d380d
- Fixes the IPC bug - Fixes the terminfo bug - Moves the OSX SDK out of our nixcrpkgs fork. - Vendor nixcrpkgs instead of having it be a submodule.
24 lines
445 B
Nix
24 lines
445 B
Nix
{ crossenv, gdb, debug ? false }:
|
|
|
|
if crossenv.os != "windows" then "" else
|
|
|
|
let
|
|
angle = import ./lib.nix {
|
|
inherit crossenv debug;
|
|
};
|
|
|
|
util = import ./util.nix {
|
|
inherit crossenv angle;
|
|
};
|
|
|
|
examples = import ./examples.nix {
|
|
inherit crossenv angle;
|
|
angle_util = util;
|
|
};
|
|
|
|
debug_bundle = import ./debug_bundle.nix {
|
|
inherit crossenv gdb angle examples;
|
|
};
|
|
|
|
in angle // { inherit util examples debug_bundle; }
|