3
0
Fork 0
forked from mirrors/nixpkgs

dune: fix buildInputs vs nativeBuildInputs

This commit is contained in:
Guillaume Girol 2021-08-14 12:00:00 +00:00
parent e6f82a9ec1
commit 2c35af2205
2 changed files with 4 additions and 2 deletions

View file

@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
sha256 = "1rkc8lqw30ifjaz8d81la6i8j05ffd0whpxqsbg6dci16945zjvp";
};
buildInputs = [ ocaml findlib ];
nativeBuildInputs = [ ocaml findlib ];
strictDeps = true;
buildFlags = [ "release" ];
makeFlags = [

View file

@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
sha256 = "07m476kgagpd6kzm3jq30yfxqspr2hychah0xfqs14z82zxpq8dv";
};
buildInputs = [ ocaml findlib ];
nativeBuildInputs = [ ocaml findlib ];
strictDeps = true;
buildFlags = "release";