mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 01:41:37 +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;
|
||
|
}
|