a9f0eef3a0
ocamlPackages.atd-jsonlike: init at 4.1.0 ocamlPackages.atd-yamlx: init at 4.1.0
19 lines
320 B
Nix
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";
|
|
};
|
|
}
|