summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/atdml/default.nix
blob: a2465772e000935ac232d2c29a0bfa28797a4ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  buildDunePackage,
  atd,
  cmdliner,
}:

buildDunePackage {
  pname = "atdml";
  inherit (atd) version src;

  minimalOCamlVersion = "4.10";

  buildInputs = [ cmdliner ];

  propagatedBuildInputs = [ atd ];

  meta = atd.meta // {
    description = "Simplified OCaml JSON serializers using the Yojson AST";
    maintainers = [ lib.maintainers.vbgl ];
    mainProgram = "atdml";
  };
}