about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/atdgen/default.nix
blob: bab2541fd74444daca3b5d387295f1b9c2d4f3ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{stdenv, atd, yojson, menhir, easy-format, biniou, cppo, buildOcaml, fetchurl, which}:

buildOcaml rec {
  name = "atdgen";
  version = "1.6.0";

  src = fetchurl {
    url = "https://github.com/mjambon/atdgen/archive/v${version}.tar.gz";
    sha256 = "1icdxgb7qqq1pcbfqi0ikryiwaljd594z3acyci8g3bnlq0yc7zn";
  };

  installPhase = ''
    mkdir -p $out/bin
    make PREFIX=$out install
  '';

  buildInputs = [ which atd biniou yojson ];

  meta = with stdenv.lib; {
    homepage = https://github.com/mjambon/atdgen;
    description = "Generates optimized boilerplate OCaml code for JSON and Biniou IO from type definitions";
    license = licenses.bsd3;
    maintainers = [ maintainers.jwilberding ];
  };
}