mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +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;
|
|
}
|