summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/flow/default.nix
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-04-04 13:57:15 +0200
committerUlrik Strid <ulrik.strid@outlook.com>2023-02-03 08:59:34 +0100
commit376e9ceeadc4c4e06f34b33bf347a504a4b3bd65 (patch)
tree24be3802f04a68ffc1e7f1702c0eb35cceda7b7a /pkgs/development/tools/analysis/flow/default.nix
parentc53a63adf11330c66d3f0ed0def74e0dacd2cd2a (diff)
downloadnixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.tar
nixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.tar.gz
nixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.tar.bz2
nixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.tar.lz
nixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.tar.xz
nixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.tar.zst
nixpkgs-376e9ceeadc4c4e06f34b33bf347a504a4b3bd65.zip
treewide: add strictDeps = true to most packages depending on ocaml
Diffstat (limited to 'pkgs/development/tools/analysis/flow/default.nix')
-rw-r--r--pkgs/development/tools/analysis/flow/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix
index a7cc801c70c..7a4ed91b953 100644
--- a/pkgs/development/tools/analysis/flow/default.nix
+++ b/pkgs/development/tools/analysis/flow/default.nix
@@ -18,7 +18,10 @@ stdenv.mkDerivation rec {
     install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow
   '';
 
-  buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml-migrate-parsetree-2 dtoa fileutils core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec visitors wtf8 ])
+  strictDeps = true;
+
+  nativeBuildInputs = with ocamlPackages; [ ocaml findlib ocamlbuild ];
+  buildInputs = with ocamlPackages; [ ocaml-migrate-parsetree-2 dtoa fileutils core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec visitors wtf8 ]
     ++ lib.optionals stdenv.isDarwin [ CoreServices ];
 
   meta = with lib; {