2016-09-14 00:07:19 +01:00
|
|
|
{stdenv, buildOcamlJane,
|
2016-10-11 12:22:41 +01:00
|
|
|
ppx_core, ppx_tools, ppx_type_conv, sexplib, variantslib}:
|
2016-09-14 00:07:19 +01:00
|
|
|
|
|
|
|
buildOcamlJane rec {
|
|
|
|
name = "ppx_variants_conv";
|
|
|
|
hash = "0kgal8b9yh7wrd75hllb9fyl6zbksfnr9k7pykpzdm3js98dirhn";
|
2016-10-11 12:22:41 +01:00
|
|
|
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib variantslib ];
|
2016-09-14 00:07:19 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-09-14 03:25:04 +01:00
|
|
|
description = "Generation of accessor and iteration functions for ocaml variant types";
|
2016-09-14 00:07:19 +01:00
|
|
|
maintainers = [ maintainers.maurer ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|