summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cstruct/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/cstruct/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/cstruct/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/cstruct/default.nix b/pkgs/development/ocaml-modules/cstruct/default.nix
index 57a057e0eaa9..68b202f9ade6 100644
--- a/pkgs/development/ocaml-modules/cstruct/default.nix
+++ b/pkgs/development/ocaml-modules/cstruct/default.nix
@@ -1,4 +1,4 @@
-{stdenv, writeText, fetchurl, ocaml, ocplib-endian, sexplib, findlib,
+{stdenv, writeText, fetchurl, ocaml, ocplib-endian, sexplib_p4, findlib,
  async ? null, lwt ? null, camlp4}:
 
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
   configureFlags = stdenv.lib.strings.concatStringsSep " " ((if lwt != null then ["--enable-lwt"] else []) ++
                                           (if async != null then ["--enable-async"] else []));
   buildInputs = [ocaml findlib camlp4];
-  propagatedBuildInputs = [ocplib-endian sexplib lwt async];
+  propagatedBuildInputs = [ocplib-endian sexplib_p4 lwt async];
 
   createFindlibDestdir = true;
   dontStrip = true;