mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-16 19:22:22 +03:00
12 lines
217 B
Nix
12 lines
217 B
Nix
{
|
|
pkgs,
|
|
ivory ? ../../../bin/ivory.pill
|
|
}:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "ivory.h";
|
|
builder = ./builder.sh;
|
|
nativeBuildInputs = with pkgs; [ xxd ];
|
|
IVORY = ivory;
|
|
}
|