ppx_sexp_conv: use sexplib_p4 instead of sexplib
This prevents potential interface incompatibilities if newer compiler versions are used
This commit is contained in:
parent
0c8859fd17
commit
32e86a3e2a
|
@ -1,10 +1,10 @@
|
||||||
{stdenv, buildOcamlJane,
|
{stdenv, buildOcamlJane,
|
||||||
ppx_core, ppx_tools, ppx_type_conv, sexplib}:
|
ppx_core, ppx_tools, ppx_type_conv, sexplib_p4}:
|
||||||
|
|
||||||
buildOcamlJane rec {
|
buildOcamlJane rec {
|
||||||
name = "ppx_sexp_conv";
|
name = "ppx_sexp_conv";
|
||||||
hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2";
|
hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2";
|
||||||
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib];
|
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib_p4 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "PPX syntax extension that generates code for converting OCaml types to and from s-expressions, as defined in the sexplib library";
|
description = "PPX syntax extension that generates code for converting OCaml types to and from s-expressions, as defined in the sexplib library";
|
||||||
|
|
Loading…
Reference in New Issue