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-12-05 06:38:35 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-12-05 14:21:47 +0000
commit485b09dce30726afc160122465cd4b096b01a9e3 (patch)
tree90dba784c6e559760e0c5dd41793355521bc9841 /pkgs/development/ocaml-modules/nocrypto
parent8f56c1977821f5d728b471a63034b99d2d4d07f7 (diff)
downloadnixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.tar
nixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.tar.gz
nixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.tar.bz2
nixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.tar.lz
nixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.tar.xz
nixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.tar.zst
nixpkgs-485b09dce30726afc160122465cd4b096b01a9e3.zip
ocamlPackages.nocrypto: propagate “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 bed872ed08d..833da3bb67c 100644
--- a/pkgs/development/ocaml-modules/nocrypto/default.nix
+++ b/pkgs/development/ocaml-modules/nocrypto/default.nix
@@ -52,8 +52,8 @@ stdenv.mkDerivation rec {
   ];
 
   nativeBuildInputs = [ ocaml findlib ocamlbuild cc-wrapper ];
-  buildInputs = [ ocamlbuild findlib topkg cpuid ocb-stubblr ppx_deriving ];
-  propagatedBuildInputs = [ cstruct ppx_sexp_conv sexplib zarith ] ++ optional withLwt cstruct-lwt;
+  buildInputs = [ ocamlbuild findlib topkg cpuid ocb-stubblr ];
+  propagatedBuildInputs = [ cstruct ppx_deriving ppx_sexp_conv sexplib zarith ] ++ optional withLwt cstruct-lwt;
 
   buildPhase = "${topkg.buildPhase} --with-lwt ${boolToString withLwt}";
   inherit (topkg) installPhase;