Files
Vincent Laporte a9f0eef3a0 ocamlPackages.atd: 4.0.0 → 4.1.0
ocamlPackages.atd-jsonlike: init at 4.1.0
ocamlPackages.atd-yamlx: init at 4.1.0
2026-04-16 06:51:03 +02:00

19 lines
320 B
Nix

{
buildDunePackage,
atd,
re,
}:
buildDunePackage {
pname = "atd-jsonlike";
inherit (atd) src version;
minimalOCamlVersion = "4.12";
propagatedBuildInputs = [ re ];
meta = (removeAttrs atd.meta [ "mainProgram" ]) // {
description = "Generic JSON-like AST for use with ATD code generators";
};
}