nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-optcomp.nix

16 lines
503 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
2016-09-14 00:45:18 +03:00
ppx_core, ppx_tools}:
2019-08-14 00:52:01 +03:00
buildOcamlJane {
2016-09-14 00:45:18 +03:00
name = "ppx_optcomp";
hash = "09m2x2a5ics4bz1j29n5slhh1rlyhcwdfmf44v1jfxcby3f0riwd";
propagatedBuildInputs =
[ ppx_core ppx_tools ];
meta = with lib; {
2016-09-14 00:45:18 +03:00
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;
};
}