24 lines
367 B
Nix
24 lines
367 B
Nix
|
|
{
|
||
|
|
buildDunePackage,
|
||
|
|
atdgen-codec-runtime,
|
||
|
|
biniou,
|
||
|
|
yojson,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildDunePackage {
|
||
|
|
pname = "atdgen-runtime";
|
||
|
|
inherit (atdgen-codec-runtime) version src;
|
||
|
|
|
||
|
|
minimalOCamlVersion = "4.08";
|
||
|
|
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
biniou
|
||
|
|
yojson
|
||
|
|
];
|
||
|
|
|
||
|
|
meta = atdgen-codec-runtime.meta // {
|
||
|
|
description = "Runtime library for code generated by atdgen";
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|