a9f0eef3a0
ocamlPackages.atd-jsonlike: init at 4.1.0 ocamlPackages.atd-yamlx: init at 4.1.0
20 lines
310 B
Nix
20 lines
310 B
Nix
{
|
|
buildDunePackage,
|
|
atd-jsonlike,
|
|
yamlx,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "atd-yamlx";
|
|
inherit (atd-jsonlike) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
atd-jsonlike
|
|
yamlx
|
|
];
|
|
|
|
meta = atd-jsonlike.meta // {
|
|
description = "YAML-to-jsonlike bridge for use with ATD code generators";
|
|
};
|
|
}
|