summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/nocrypto
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-09-03 19:35:40 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-09-10 14:05:26 +0000
commit764724a631f59522b01132d9a251d27a9c72c839 (patch)
tree892136d622b22a5fe5faf21666338cb11be84c92 /pkgs/development/ocaml-modules/nocrypto
parentd9b290000e94e35e40c55a717ec1ccbd749e7f31 (diff)
downloadnixpkgs-764724a631f59522b01132d9a251d27a9c72c839.tar
nixpkgs-764724a631f59522b01132d9a251d27a9c72c839.tar.gz
nixpkgs-764724a631f59522b01132d9a251d27a9c72c839.tar.bz2
nixpkgs-764724a631f59522b01132d9a251d27a9c72c839.tar.lz
nixpkgs-764724a631f59522b01132d9a251d27a9c72c839.tar.xz
nixpkgs-764724a631f59522b01132d9a251d27a9c72c839.tar.zst
nixpkgs-764724a631f59522b01132d9a251d27a9c72c839.zip
ocamlPackages.nocrypto: add explicit dependency to ppx_deriving
Diffstat (limited to 'pkgs/development/ocaml-modules/nocrypto')
-rw-r--r--pkgs/development/ocaml-modules/nocrypto/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix
index 9108fd248c0..06a87c072b4 100644
--- a/pkgs/development/ocaml-modules/nocrypto/default.nix
+++ b/pkgs/development/ocaml-modules/nocrypto/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, fetchpatch, ocaml, findlib, ocamlbuild, topkg
 , cpuid, ocb-stubblr, sexplib
-, cstruct, zarith, ppx_sexp_conv
+, cstruct, zarith, ppx_sexp_conv, ppx_deriving
 , cstruct-lwt ? null
 }:
 
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
   ];
 
   buildInputs = [ ocaml findlib ocamlbuild topkg cpuid ocb-stubblr ];
-  propagatedBuildInputs = [ cstruct ppx_sexp_conv sexplib zarith ] ++ optional withLwt cstruct-lwt;
+  propagatedBuildInputs = [ cstruct ppx_deriving ppx_sexp_conv sexplib zarith ] ++ optional withLwt cstruct-lwt;
 
   buildPhase = "${topkg.buildPhase} --with-lwt ${boolToString withLwt}";
   inherit (topkg) installPhase;