about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocurl
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-02-22 10:59:04 +0100
committerUlrik Strid <ulrik.strid@outlook.com>2022-02-24 14:39:27 +0100
commita13cdfe520d87db401dd000fbd67cad728162a60 (patch)
tree85c0d28a4d9ae9e447f2bbf026decdb0ff35d946 /pkgs/development/ocaml-modules/ocurl
parent24102db995db84d1caa4cf24371b153c2023aeee (diff)
ocamlPackages tree-wide: Move buildInputs that should be nativeBuildInputs
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild.
This makes some closures significantly smaller and makes cross compilation easier
Diffstat (limited to 'pkgs/development/ocaml-modules/ocurl')
-rw-r--r--pkgs/development/ocaml-modules/ocurl/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/ocurl/default.nix b/pkgs/development/ocaml-modules/ocurl/default.nix
index ea2af8dd4c827..5e815d4dca6bc 100644
--- a/pkgs/development/ocaml-modules/ocurl/default.nix
+++ b/pkgs/development/ocaml-modules/ocurl/default.nix
@@ -13,8 +13,12 @@ stdenv.mkDerivation rec {
     sha256 = "0n621cxb9012pj280c7821qqsdhypj8qy9qgrah79dkh6a8h2py6";
   };
 
-  buildInputs = [ pkg-config ocaml findlib ncurses ];
+  nativeBuildInputs = [ pkg-config ocaml findlib ];
+  buildInputs = [ ncurses ];
   propagatedBuildInputs = [ curl lwt ];
+
+  strictDeps = true;
+
   createFindlibDestdir = true;
   meta = {
     description = "OCaml bindings to libcurl";