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