shrub/nix/nixcrpkgs/pkgs/angle/util.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

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