ocamlPackages.dyn: init at 3.0.3

This commit is contained in:
Vincent Laporte 2022-03-16 17:30:49 +01:00 committed by Vincent Laporte
parent ac07d2fa3e
commit ab97541807
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ lib, buildDunePackage, dune_3, ordering }:
buildDunePackage {
pname = "dyn";
inherit (dune_3) version src;
duneVersion = "3";
dontAddPrefix = true;
propagatedBuildInputs = [ ordering ];
meta = dune_3.meta // {
description = "Dynamic type";
};
}

View file

@ -330,6 +330,8 @@ let
duration = callPackage ../development/ocaml-modules/duration { };
dyn = callPackage ../development/ocaml-modules/dyn { };
earley = callPackage ../development/ocaml-modules/earley { };
earlybird = callPackage ../development/ocaml-modules/earlybird { };