mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +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.
16 lines
310 B
Nix
16 lines
310 B
Nix
# libangle_util is a helper library for programs like tests
|
|
# and samples that surround ANGLE but that are not the ANGLE libraries
|
|
# themselves
|
|
|
|
{ crossenv, angle }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "angle_util-${angle.version}";
|
|
|
|
src = angle.src;
|
|
|
|
inherit angle;
|
|
|
|
builder = ./util_builder.sh;
|
|
}
|