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

16 lines
504 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
2016-09-13 23:45:18 +02:00
ppx_core, ppx_tools}:
2019-08-13 23:52:01 +02:00
buildOcamlJane {
2021-11-16 00:43:14 +01:00
pname = "ppx_optcomp";
2016-09-13 23:45:18 +02:00
hash = "09m2x2a5ics4bz1j29n5slhh1rlyhcwdfmf44v1jfxcby3f0riwd";
propagatedBuildInputs =
[ ppx_core ppx_tools ];
meta = with lib; {
2016-09-13 23:45:18 +02: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;
};
}