summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/atd/jsonlike.nix
blob: 7c75fe3df48db5b4c605438ea6d41f783d995160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  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";
  };
}