summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/atdgen/runtime.nix
blob: 0006e8613c5898b437d645e172cef57bd01f3659 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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";
  };

}