mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
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;
|
||
|
}
|