summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-optcomp.nix
blob: 1ee00ecfa70f83ed83bf9f0cfa3a2267e8d12dc2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                     

                      
                




                                                                
                    




                                                                                                                                                                                                   
{lib, buildOcamlJane,
 ppx_core, ppx_tools}:

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

  meta = with 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;
  };
}