ppx_optcomp: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 17:45:18 -04:00
parent 95d9e2b86a
commit 5bdce80515
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_tools}:
buildOcamlJane rec {
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;
};
}

View file

@ -5509,6 +5509,8 @@ in
ppx_core = callPackage ../development/ocaml-modules/janestreet/ppx-core.nix {};
ppx_optcomp = callPackage ../development/ocaml-modules/janestreet/ppx-optcomp.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;