about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2016-11-03 00:52:55 +0100
committersternenseemann <git@lukasepple.de>2016-11-03 14:08:18 +0100
commit32e86a3e2a474f937a68c8d7d06d125ef24574c6 (patch)
treed3c1f689437a0ac4455253789b991dbab6b7e6d9 /pkgs/development/ocaml-modules
parent0c8859fd17eb9a95b04449a599c62bab4b5d677d (diff)
downloadnixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.tar
nixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.tar.gz
nixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.tar.bz2
nixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.tar.lz
nixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.tar.xz
nixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.tar.zst
nixlib-32e86a3e2a474f937a68c8d7d06d125ef24574c6.zip
ppx_sexp_conv: use sexplib_p4 instead of sexplib
This prevents potential interface incompatibilities if newer compiler versions are used
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix b/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix
index bf4a7b214dec..729e28e2d2f2 100644
--- a/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix
@@ -1,10 +1,10 @@
 {stdenv, buildOcamlJane,
- ppx_core, ppx_tools, ppx_type_conv, sexplib}:
+ ppx_core, ppx_tools, ppx_type_conv, sexplib_p4}:
 
 buildOcamlJane rec {
   name = "ppx_sexp_conv";
   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; {
     description = "PPX syntax extension that generates code for converting OCaml types to and from s-expressions, as defined in the sexplib library";