summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-04-28 16:10:11 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-04-28 16:19:57 +0000
commit2e75b4b4793c999c8a5ee79eccb359199d5631fe (patch)
tree9f77eaaac99aec0d745d4673901b5f74ecc55866 /pkgs/development/ocaml-modules
parent8ab3a2a232b5347502fb4947f745933d488d3535 (diff)
downloadnixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.tar
nixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.tar.gz
nixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.tar.bz2
nixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.tar.lz
nixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.tar.xz
nixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.tar.zst
nixlib-2e75b4b4793c999c8a5ee79eccb359199d5631fe.zip
ocamlPackages.ocurl: propagate its curl dependency
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ocurl/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/ocurl/default.nix b/pkgs/development/ocaml-modules/ocurl/default.nix
index 974779e473ff..94c2e1208839 100644
--- a/pkgs/development/ocaml-modules/ocurl/default.nix
+++ b/pkgs/development/ocaml-modules/ocurl/default.nix
@@ -7,7 +7,8 @@ stdenv.mkDerivation rec {
     sha256 = "0yn7f3g5wva8nqxh76adpq9rihggc405jkqysfghzwnf3yymyqrr";
   };
 
-  buildInputs = [ocaml findlib curl ncurses];
+  buildInputs = [ ocaml findlib ncurses ];
+  propagatedBuildInputs = [ curl ];
   createFindlibDestdir = true;
   meta = {
     description = "OCaml bindings to libcurl";