about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien+git@xlumurb.eu>2021-08-14 12:00:00 +0000
committerGuillaume Girol <symphorien+git@xlumurb.eu>2021-08-19 09:30:47 +0200
commitfc3806b422edc0ec6709b1719c875941360f47cb (patch)
tree9d304148401e5fdd3b1407eba494b566aa065b3b /pkgs/development/ocaml-modules
parent4c0020beabe366f5477935a6aed633a407425d08 (diff)
downloadnixlib-fc3806b422edc0ec6709b1719c875941360f47cb.tar
nixlib-fc3806b422edc0ec6709b1719c875941360f47cb.tar.gz
nixlib-fc3806b422edc0ec6709b1719c875941360f47cb.tar.bz2
nixlib-fc3806b422edc0ec6709b1719c875941360f47cb.tar.lz
nixlib-fc3806b422edc0ec6709b1719c875941360f47cb.tar.xz
nixlib-fc3806b422edc0ec6709b1719c875941360f47cb.tar.zst
nixlib-fc3806b422edc0ec6709b1719c875941360f47cb.zip
ocamlPackages.gen: fix cross
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/gen/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/gen/default.nix b/pkgs/development/ocaml-modules/gen/default.nix
index 04d1a0816606..77fc0b63c55e 100644
--- a/pkgs/development/ocaml-modules/gen/default.nix
+++ b/pkgs/development/ocaml-modules/gen/default.nix
@@ -12,7 +12,9 @@ stdenv.mkDerivation {
     sha256 = "14b8vg914nb0yp1hgxzm29bg692m0gqncjj43b599s98s1cwl92h";
   };
 
-  buildInputs = [ ocaml findlib ocamlbuild qtest ounit ];
+  nativeBuildInputs = [ ocaml findlib ocamlbuild ];
+  buildInputs = [ qtest ounit ];
+  strictDeps = true;
 
   configureFlags = [
     "--enable-tests"