mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
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";
|
|
};
|
|
}
|