ocamlPackages.atdgen-runtime: init at 2.4.1

This commit is contained in:
Vincent Laporte 2022-04-23 10:50:35 +02:00 committed by Vincent Laporte
parent ae9b63301b
commit 5a90feb76a
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -48,6 +48,8 @@ let
atdgen-codec-runtime = callPackage ../development/ocaml-modules/atdgen/codec-runtime.nix { };
atdgen-runtime = callPackage ../development/ocaml-modules/atdgen/runtime.nix { };
awa = callPackage ../development/ocaml-modules/awa { };
awa-lwt = callPackage ../development/ocaml-modules/awa/lwt.nix { };