mirror of
https://github.com/urbit/shrub.git
synced 2024-12-30 15:44:03 +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.
12 lines
213 B
Nix
12 lines
213 B
Nix
{ crossenv, gdb, angle, examples }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "angle_debug_bundle-${angle.version}";
|
|
|
|
builder = ./debug_bundle_builder.sh;
|
|
|
|
inherit (angle) src;
|
|
|
|
inherit gdb angle examples;
|
|
}
|