summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ppx_gen_rec/default.nix
blob: 4c458b983d33b7b935a0ba1a3713e83593f132fc (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
26
27
28
29
30
{ stdenv, fetchurl, ocaml, findlib, dune, ocaml-migrate-parsetree }:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";

stdenv.mkDerivation rec {
  pname = "ppx_gen_rec";
  name = "ocaml${ocaml.version}-${pname}-${version}";
  version = "1.0.0";

  src = fetchurl {
    url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
    sha256 = "0qy0wa3rd5yh1612jijadi1yddfslpsmmmf69phi2dhr3vmkhza7";
  };

  unpackCmd = "tar xjf $src";

  buildInputs = [ ocaml findlib dune ocaml-migrate-parsetree ];

  buildPhase = "dune build -p ppx_gen_rec";

  inherit (dune) installPhase;

  meta = with stdenv.lib; {
    homepage = https://github.com/flowtype/ocaml-ppx_gen_rec;
    description = "ocaml preprocessor that generates a recursive module";
    license = licenses.mit;
    platforms = ocaml.meta.platforms or [];
    maintainers = [ maintainers.frontsideair ];
  };
}