b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
15 lines
352 B
Nix
15 lines
352 B
Nix
{ buildDunePackage, atdgen-codec-runtime, biniou, yojson }:
|
|
|
|
buildDunePackage rec {
|
|
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";
|
|
};
|
|
|
|
}
|