ocamlPackages.atdml: init at 4.0.0

This commit is contained in:
Vincent Laporte
2026-03-26 17:59:19 +01:00
parent 2dc8245afe
commit df96a914b4
3 changed files with 23 additions and 2 deletions
@@ -9,8 +9,6 @@ buildDunePackage {
pname = "atdgen-runtime";
inherit (atdgen-codec-runtime) version src;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
biniou
yojson
@@ -0,0 +1,21 @@
{
lib,
buildDunePackage,
atd,
cmdliner,
}:
buildDunePackage {
pname = "atdml";
inherit (atd) version src;
buildInputs = [ cmdliner ];
propagatedBuildInputs = [ atd ];
meta = atd.meta // {
description = "Simplified OCaml JSON serializers using the Yojson AST";
maintainers = [ lib.maintainers.vbgl ];
mainProgram = "atdml";
};
}
+2
View File
@@ -76,6 +76,8 @@ let
atdgen-runtime = callPackage ../development/ocaml-modules/atdgen/runtime.nix { };
atdml = callPackage ../development/ocaml-modules/atdml { };
augeas = callPackage ../development/ocaml-modules/augeas {
inherit (pkgs) augeas;
};