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