summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-optcomp.nix
blob: 61fa66b77cc52291dd9bd051ff12956a7eeafe95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, buildOcamlJane,
 ppx_core, ppx_tools}:

buildOcamlJane {
  name = "ppx_optcomp";
  hash = "09m2x2a5ics4bz1j29n5slhh1rlyhcwdfmf44v1jfxcby3f0riwd";
  propagatedBuildInputs =
    [ ppx_core ppx_tools ];

  meta = with stdenv.lib; {
    description = "ppx_optcomp stands for Optional Compilation. It is a tool used to handle optional compilations of pieces of code depending of the word size, the version of the compiler, etc.";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}