mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-16 10:49:26 +03:00
12 lines
237 B
Nix
12 lines
237 B
Nix
|
{
|
||
|
crossenv,
|
||
|
ivory ? ../../../bin/ivory.pill
|
||
|
}:
|
||
|
|
||
|
crossenv.make_derivation rec {
|
||
|
name = "ivory.h";
|
||
|
builder = ./builder.sh;
|
||
|
native_inputs = with crossenv.nixpkgs; [ xxd ];
|
||
|
IVORY = ivory;
|
||
|
}
|