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

}