urbit/nix/nixcrpkgs/pkgs/angle/default.nix
benjamin-tlon edd57d380d
Finish cc-release cross-compilation. (#1202)
- 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.
2019-04-23 19:50:38 -07:00

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; }